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.
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.
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
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
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
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
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
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
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
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
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
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
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
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
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")
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")
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")
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")
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)
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")
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"
)
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")
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
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
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
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
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
Run a t-test to analyse your hypothesis.
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. 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.