Assignment3

library(arules)

library(tidyverse)

Import the Retail Transactions

retail_transactions <- read.transactions("retail_transactions_3.csv", sep = ",")

Part 2

summary(retail_transactions)
transactions as itemMatrix in sparse format with
 10000 rows (elements/itemsets/transactions) and
 5479 columns (items) and a density of 0.002744552 

most frequent items:
WHITE HANGING HEART T-LIGHT HOLDER           REGENCY CAKESTAND 3 TIER 
                               822                                776 
           JUMBO BAG RED RETROSPOT                      PARTY BUNTING 
                               663                                561 
     ASSORTED COLOUR BIRD ORNAMENT                            (Other) 
                               544                             147008 

element (itemset/transaction) length distribution:
sizes
   1    2    3    4    5    6    7    8    9   10   11   12   13   14   15   16 
1658  707  498  413  365  341  316  310  309  290  261  227  227  242  260  227 
  17   18   19   20   21   22   23   24   25   26   27   28   29   30   31   32 
 204  199  233  189  184  149  138  125  104  111  112   98  113   99   78   68 
  33   34   35   36   37   38   39   40   41   42   43   44   45   46   47   48 
  55   62   65   44   48   41   52   41   44   26   45   27   27   35   30   24 
  49   50   51   52   53   54   55   56   57   58   59   60   61   62   63   64 
  26   23   22   21   16   19   21   13   11   16   13   14   15   10   13   13 
  65   66   67   68   69   70   71   72   73   74   75   76   77   78   79   80 
   3   13   13    7    6    9    9    6    6    4    3    8    5    6    3    5 
  81   82   83   84   85   86   87   88   89   90   91   92   93   94   95   96 
   3    4    5    8    3    5    8    2    4    4    1    3    2    3    1    2 
  97   98  100  101  102  103  104  105  107  108  109  110  111  112  113  119 
   5    1    2    2    2    1    2    1    1    3    1    2    1    1    2    1 
 120  121  122  123  125  127  134  142  146  147  150  154  157  171  193  204 
   1    1    1    1    1    1    1    2    1    1    1    2    1    2    1    1 
 235  249 
   1    1 

   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
   1.00    3.00   10.00   15.04   21.00  249.00 

includes extended item information - examples:
                      labels
1                   1 HANGER
2     10 COLOUR SPACEBOY PEN
3 12 COLOURED PARTY BALLOONS

Part 2A

There are 10000 transactions.

5479 = 54,790,000 * 0.002744552 = 150,374 transactions in the dataset.

Part 2B

There are 5479 items available.

## Part 2C

10000 * 5479 = 54,790,000

Part 2C(i)

0.002744552 = 0.2%

54,790,000 * 0.002744552 = 150.374

Part 2D

249

Part 2E

15.04

Part 3

itemFrequencyPlot(retail_transactions, topN = 20, horiz = T)

Part 4

retail_rules <- apriori(retail_transactions, parameter = list (support = 0.01, confidence = 0.5, minlen = 2))
Apriori

Parameter specification:
 confidence minval smax arem  aval originalSupport maxtime support minlen
        0.5    0.1    1 none FALSE            TRUE       5    0.01      2
 maxlen target  ext
     10  rules TRUE

Algorithmic control:
 filter tree heap memopt load sort verbose
    0.1 TRUE TRUE  FALSE TRUE    2    TRUE

Absolute minimum support count: 100 

set item appearances ...[0 item(s)] done [0.00s].
set transactions ...[5479 item(s), 10000 transaction(s)] done [0.06s].
sorting and recoding items ... [384 item(s)] done [0.00s].
creating transaction tree ... done [0.00s].
checking subsets of size 1 2 3 4 done [0.00s].
writing ... [86 rule(s)] done [0.00s].
creating S4 object  ... done [0.00s].

Part 4A

86 rules are discovered

Part 4B

THE SUPPORT VALUE IS THE PERCENTAGE OF TIMES A PRODUCT WAS PURCHASED TOGETHER IN THE DATA SET, SO FOR THE ALGORITHM IT MEANS THAT IT IS ONLY INCLUDES PRODUCTS THAT HAVE A SUPPORT VALUE OVER 0.01.

Part 4C

THE CONFIDENCE VALUE IS HOW OFTEN ITEMS ARE PURCHASED TOGETHER, SO FOR THIS ALGORITHM IT MEANS THAT THE ITEMS PURCHASED TOGETHER AT LEAST 50% OF THE TIME, A RULE IS CREATED.

Part 5

summary(retail_rules)
set of 86 rules

rule length distribution (lhs + rhs):sizes
 2  3 
47 39 

   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
  2.000   2.000   2.000   2.453   3.000   3.000 

summary of quality measures:
    support          confidence        coverage            lift       
 Min.   :0.01000   Min.   :0.5021   Min.   :0.01200   Min.   : 6.585  
 1st Qu.:0.01063   1st Qu.:0.5510   1st Qu.:0.01733   1st Qu.:12.347  
 Median :0.01160   Median :0.6022   Median :0.02000   Median :15.266  
 Mean   :0.01315   Mean   :0.6198   Mean   :0.02152   Mean   :17.144  
 3rd Qu.:0.01515   3rd Qu.:0.6652   3rd Qu.:0.02428   3rd Qu.:21.864  
 Max.   :0.02270   Max.   :0.8814   Max.   :0.03770   Max.   :44.055  
     count      
 Min.   :100.0  
 1st Qu.:106.2  
 Median :116.0  
 Mean   :131.5  
 3rd Qu.:151.5  
 Max.   :227.0  

mining info:
                data ntransactions support confidence
 retail_transactions         10000    0.01        0.5
                                                                                                call
 apriori(data = retail_transactions, parameter = list(support = 0.01, confidence = 0.5, minlen = 2))

Part 5A

2 items = 47 rules

3 items = 39 rules 

Part 5B

minimum lift value = 6.585

maximum lift value = 44.055

Part 6

inspect(sort(retail_rules, by = "lift"))
     lhs                                      rhs                                   support confidence coverage      lift count
[1]  {WOODEN STAR CHRISTMAS SCANDINAVIAN}  => {WOODEN HEART CHRISTMAS SCANDINAVIAN}  0.0113  0.7533333   0.0150 44.054581   113
[2]  {WOODEN HEART CHRISTMAS SCANDINAVIAN} => {WOODEN STAR CHRISTMAS SCANDINAVIAN}   0.0113  0.6608187   0.0171 44.054581   113
[3]  {PINK REGENCY TEACUP AND SAUCER,                                                                                          
      ROSES REGENCY TEACUP AND SAUCER}     => {GREEN REGENCY TEACUP AND SAUCER}      0.0156  0.8813559   0.0177 28.708662   156
[4]  {GREEN REGENCY TEACUP AND SAUCER,                                                                                         
      REGENCY CAKESTAND 3 TIER}            => {PINK REGENCY TEACUP AND SAUCER}       0.0102  0.6938776   0.0147 28.672626   102
[5]  {GREEN REGENCY TEACUP AND SAUCER,                                                                                         
      ROSES REGENCY TEACUP AND SAUCER}     => {PINK REGENCY TEACUP AND SAUCER}       0.0156  0.6872247   0.0227 28.397714   156
[6]  {PINK REGENCY TEACUP AND SAUCER,                                                                                          
      REGENCY CAKESTAND 3 TIER}            => {GREEN REGENCY TEACUP AND SAUCER}      0.0102  0.8500000   0.0120 27.687296   102
[7]  {GARDENERS KNEELING PAD KEEP CALM}    => {GARDENERS KNEELING PAD CUP OF TEA}    0.0163  0.5821429   0.0280 26.105061   163
[8]  {GARDENERS KNEELING PAD CUP OF TEA}   => {GARDENERS KNEELING PAD KEEP CALM}     0.0163  0.7309417   0.0223 26.105061   163
[9]  {PINK REGENCY TEACUP AND SAUCER}      => {GREEN REGENCY TEACUP AND SAUCER}      0.0192  0.7933884   0.0242 25.843271   192
[10] {GREEN REGENCY TEACUP AND SAUCER}     => {PINK REGENCY TEACUP AND SAUCER}       0.0192  0.6254072   0.0307 25.843271   192
[11] {DOLLY GIRL LUNCH BOX}                => {SPACEBOY LUNCH BOX}                   0.0138  0.6359447   0.0217 25.642931   138
[12] {SPACEBOY LUNCH BOX}                  => {DOLLY GIRL LUNCH BOX}                 0.0138  0.5564516   0.0248 25.642931   138
[13] {GREEN REGENCY TEACUP AND SAUCER,                                                                                         
      PINK REGENCY TEACUP AND SAUCER}      => {ROSES REGENCY TEACUP AND SAUCER}      0.0156  0.8125000   0.0192 24.399399   156
[14] {REGENCY CAKESTAND 3 TIER,                                                                                                
      ROSES REGENCY TEACUP AND SAUCER}     => {GREEN REGENCY TEACUP AND SAUCER}      0.0116  0.7483871   0.0155 24.377430   116
[15] {JUMBO BAG PEARS}                     => {JUMBO BAG APPLES}                     0.0111  0.6529412   0.0170 24.272906   111
[16] {GREEN REGENCY TEACUP AND SAUCER,                                                                                         
      REGENCY CAKESTAND 3 TIER}            => {ROSES REGENCY TEACUP AND SAUCER}      0.0116  0.7891156   0.0147 23.697167   116
[17] {GREEN REGENCY TEACUP AND SAUCER}     => {ROSES REGENCY TEACUP AND SAUCER}      0.0227  0.7394137   0.0307 22.204615   227
[18] {ROSES REGENCY TEACUP AND SAUCER}     => {GREEN REGENCY TEACUP AND SAUCER}      0.0227  0.6816817   0.0333 22.204615   227
[19] {ROUND SNACK BOXES SET OF 4 FRUITS}   => {ROUND SNACK BOXES SET OF4 WOODLAND}   0.0100  0.5524862   0.0181 22.188200   100
[20] {PINK REGENCY TEACUP AND SAUCER}      => {ROSES REGENCY TEACUP AND SAUCER}      0.0177  0.7314050   0.0242 21.964113   177
[21] {ROSES REGENCY TEACUP AND SAUCER}     => {PINK REGENCY TEACUP AND SAUCER}       0.0177  0.5315315   0.0333 21.964113   177
[22] {ALARM CLOCK BAKELIKE GREEN,                                                                                              
      ALARM CLOCK BAKELIKE PINK}           => {ALARM CLOCK BAKELIKE RED}             0.0100  0.7575758   0.0132 21.895253   100
[23] {LARGE WHITE HEART OF WICKER}         => {SMALL WHITE HEART OF WICKER}          0.0113  0.5159817   0.0219 21.771381   113
[24] {ALARM CLOCK BAKELIKE PINK,                                                                                               
      ALARM CLOCK BAKELIKE RED}            => {ALARM CLOCK BAKELIKE GREEN}           0.0100  0.6666667   0.0150 21.299255   100
[25] {CHARLOTTE BAG PINK POLKADOT}         => {RED RETROSPOT CHARLOTTE BAG}          0.0127  0.6256158   0.0203 20.923604   127
[26] {HOT WATER BOTTLE I AM SO POORLY}     => {CHOCOLATE HOT WATER BOTTLE}           0.0102  0.5454545   0.0187 20.661157   102
[27] {STRAWBERRY CHARLOTTE BAG}            => {RED RETROSPOT CHARLOTTE BAG}          0.0117  0.6157895   0.0190 20.594966   117
[28] {ALARM CLOCK BAKELIKE GREEN,                                                                                              
      ALARM CLOCK BAKELIKE RED}            => {ALARM CLOCK BAKELIKE PINK}            0.0100  0.5025126   0.0199 20.344638   100
[29] {ALARM CLOCK BAKELIKE IVORY}          => {ALARM CLOCK BAKELIKE RED}             0.0120  0.6896552   0.0174 19.932230   120
[30] {BAKING SET SPACEBOY DESIGN}          => {BAKING SET 9 PIECE RETROSPOT}         0.0115  0.6388889   0.0180 19.597819   115
[31] {ALARM CLOCK BAKELIKE GREEN}          => {ALARM CLOCK BAKELIKE RED}             0.0199  0.6357827   0.0313 18.375224   199
[32] {ALARM CLOCK BAKELIKE RED}            => {ALARM CLOCK BAKELIKE GREEN}           0.0199  0.5751445   0.0346 18.375224   199
[33] {LUNCH BAG CARS BLUE,                                                                                                     
      LUNCH BAG RED RETROSPOT}             => {LUNCH BAG WOODLAND}                   0.0101  0.5343915   0.0189 17.578669   101
[34] {ALARM CLOCK BAKELIKE PINK}           => {ALARM CLOCK BAKELIKE RED}             0.0150  0.6072874   0.0247 17.551660   150
[35] {CHARLOTTE BAG SUKI DESIGN}           => {RED RETROSPOT CHARLOTTE BAG}          0.0114  0.5181818   0.0220 17.330496   114
[36] {WOODLAND CHARLOTTE BAG}              => {RED RETROSPOT CHARLOTTE BAG}          0.0111  0.5115207   0.0217 17.107717   111
[37] {ALARM CLOCK BAKELIKE PINK}           => {ALARM CLOCK BAKELIKE GREEN}           0.0132  0.5344130   0.0247 17.073896   132
[38] {WOODEN PICTURE FRAME WHITE FINISH}   => {WOODEN FRAME ANTIQUE WHITE}           0.0197  0.5487465   0.0359 16.283279   197
[39] {WOODEN FRAME ANTIQUE WHITE}          => {WOODEN PICTURE FRAME WHITE FINISH}    0.0197  0.5845697   0.0337 16.283279   197
[40] {LUNCH BAG CARS BLUE,                                                                                                     
      LUNCH BAG RED RETROSPOT}             => {LUNCH BAG PINK POLKADOT}              0.0116  0.6137566   0.0189 16.280016   116
[41] {LUNCH BAG  BLACK SKULL,                                                                                                  
      LUNCH BAG CARS BLUE}                 => {LUNCH BAG PINK POLKADOT}              0.0108  0.6000000   0.0180 15.915119   108
[42] {LUNCH BAG RED RETROSPOT,                                                                                                 
      LUNCH BAG SUKI DESIGN}               => {LUNCH BAG PINK POLKADOT}              0.0103  0.5953757   0.0173 15.792459   103
[43] {LUNCH BAG RED RETROSPOT,                                                                                                 
      LUNCH BAG WOODLAND}                  => {LUNCH BAG CARS BLUE}                  0.0101  0.5906433   0.0171 15.301639   101
[44] {LUNCH BAG  BLACK SKULL,                                                                                                  
      LUNCH BAG RED RETROSPOT}             => {LUNCH BAG PINK POLKADOT}              0.0120  0.5741627   0.0209 15.229779   120
[45] {LUNCH BAG DOLLY GIRL DESIGN}         => {LUNCH BAG SPACEBOY DESIGN}            0.0131  0.5796460   0.0226 15.213806   131
[46] {LUNCH BAG  BLACK SKULL,                                                                                                  
      LUNCH BAG PINK POLKADOT}             => {LUNCH BAG CARS BLUE}                  0.0108  0.5775401   0.0187 14.962179   108
[47] {LUNCH BAG CARS BLUE,                                                                                                     
      LUNCH BAG RED RETROSPOT}             => {LUNCH BAG  BLACK SKULL}               0.0118  0.6243386   0.0189 14.829896   118
[48] {LUNCH BAG RED RETROSPOT,                                                                                                 
      LUNCH BAG SPACEBOY DESIGN}           => {LUNCH BAG PINK POLKADOT}              0.0101  0.5580110   0.0181 14.801354   101
[49] {LUNCH BAG PINK POLKADOT,                                                                                                 
      LUNCH BAG RED RETROSPOT}             => {LUNCH BAG CARS BLUE}                  0.0116  0.5686275   0.0204 14.731281   116
[50] {LUNCH BAG  BLACK SKULL,                                                                                                  
      LUNCH BAG RED RETROSPOT}             => {LUNCH BAG CARS BLUE}                  0.0118  0.5645933   0.0209 14.626769   118
[51] {LUNCH BAG CARS BLUE,                                                                                                     
      LUNCH BAG PINK POLKADOT}             => {LUNCH BAG  BLACK SKULL}               0.0108  0.6101695   0.0177 14.493337   108
[52] {LUNCH BAG VINTAGE LEAF DESIGN}       => {LUNCH BAG APPLE DESIGN}               0.0122  0.5020576   0.0243 14.468519   122
[53] {LUNCH BAG RED RETROSPOT,                                                                                                 
      LUNCH BAG WOODLAND}                  => {LUNCH BAG  BLACK SKULL}               0.0102  0.5964912   0.0171 14.168438   102
[54] {LUNCH BAG PINK POLKADOT,                                                                                                 
      LUNCH BAG RED RETROSPOT}             => {LUNCH BAG SUKI DESIGN}                0.0103  0.5049020   0.0204 14.064121   103
[55] {LUNCH BAG RED RETROSPOT,                                                                                                 
      LUNCH BAG SPACEBOY DESIGN}           => {LUNCH BAG  BLACK SKULL}               0.0107  0.5911602   0.0181 14.041810   107
[56] {LUNCH BAG RED RETROSPOT,                                                                                                 
      LUNCH BAG SUKI DESIGN}               => {LUNCH BAG  BLACK SKULL}               0.0102  0.5895954   0.0173 14.004641   102
[57] {LUNCH BAG PINK POLKADOT,                                                                                                 
      LUNCH BAG RED RETROSPOT}             => {LUNCH BAG  BLACK SKULL}               0.0120  0.5882353   0.0204 13.972335   120
[58] {LUNCH BAG CARS BLUE,                                                                                                     
      LUNCH BAG WOODLAND}                  => {LUNCH BAG RED RETROSPOT}              0.0101  0.7266187   0.0139 13.735703   101
[59] {LUNCH BAG  BLACK SKULL,                                                                                                  
      LUNCH BAG WOODLAND}                  => {LUNCH BAG RED RETROSPOT}              0.0102  0.7183099   0.0142 13.578636   102
[60] {LUNCH BAG  BLACK SKULL,                                                                                                  
      LUNCH BAG RED RETROSPOT}             => {LUNCH BAG SPACEBOY DESIGN}            0.0107  0.5119617   0.0209 13.437316   107
[61] {LUNCH BAG PINK POLKADOT,                                                                                                 
      LUNCH BAG SPACEBOY DESIGN}           => {LUNCH BAG RED RETROSPOT}              0.0101  0.7013889   0.0144 13.258769   101
[62] {PAINTED METAL PEARS ASSORTED}        => {ASSORTED COLOUR BIRD ORNAMENT}        0.0106  0.7210884   0.0147 13.255302   106
[63] {LUNCH BAG  BLACK SKULL,                                                                                                  
      LUNCH BAG CARS BLUE}                 => {LUNCH BAG RED RETROSPOT}              0.0118  0.6555556   0.0180 12.392355   118
[64] {LUNCH BAG CARS BLUE,                                                                                                     
      LUNCH BAG PINK POLKADOT}             => {LUNCH BAG RED RETROSPOT}              0.0116  0.6553672   0.0177 12.388795   116
[65] {LUNCH BAG  BLACK SKULL,                                                                                                  
      LUNCH BAG SPACEBOY DESIGN}           => {LUNCH BAG RED RETROSPOT}              0.0107  0.6524390   0.0164 12.333441   107
[66] {LUNCH BAG PINK POLKADOT,                                                                                                 
      LUNCH BAG SUKI DESIGN}               => {LUNCH BAG RED RETROSPOT}              0.0103  0.6518987   0.0158 12.323227   103
[67] {60 TEATIME FAIRY CAKE CASES}         => {PACK OF 72 RETROSPOT CAKE CASES}      0.0134  0.5056604   0.0265 12.184587   134
[68] {LUNCH BAG  BLACK SKULL,                                                                                                  
      LUNCH BAG PINK POLKADOT}             => {LUNCH BAG RED RETROSPOT}              0.0120  0.6417112   0.0187 12.130647   120
[69] {LUNCH BAG  BLACK SKULL,                                                                                                  
      LUNCH BAG SUKI DESIGN}               => {LUNCH BAG RED RETROSPOT}              0.0102  0.6144578   0.0166 11.615460   102
[70] {LUNCH BAG WOODLAND}                  => {LUNCH BAG RED RETROSPOT}              0.0171  0.5625000   0.0304 10.633270   171
[71] {LUNCH BAG PINK POLKADOT}             => {LUNCH BAG RED RETROSPOT}              0.0204  0.5411141   0.0377 10.228999   204
[72] {LUNCH BAG DOLLY GIRL DESIGN}         => {LUNCH BAG RED RETROSPOT}              0.0121  0.5353982   0.0226 10.120950   121
[73] {JUMBO BAG STRAWBERRY}                => {JUMBO BAG RED RETROSPOT}              0.0172  0.6515152   0.0264  9.826775   172
[74] {JUMBO BAG SCANDINAVIAN BLUE PAISLEY} => {JUMBO BAG RED RETROSPOT}              0.0108  0.6352941   0.0170  9.582113   108
[75] {JUMBO BAG PINK POLKADOT}             => {JUMBO BAG RED RETROSPOT}              0.0223  0.6043360   0.0369  9.115174   223
[76] {CANDLEHOLDER PINK HANGING HEART}     => {WHITE HANGING HEART T-LIGHT HOLDER}   0.0111  0.7449664   0.0149  9.062852   111
[77] {JUMBO BAG SPACEBOY DESIGN}           => {JUMBO BAG RED RETROSPOT}              0.0113  0.5978836   0.0189  9.017852   113
[78] {JUMBO STORAGE BAG SUKI}              => {JUMBO BAG RED RETROSPOT}              0.0186  0.5904762   0.0315  8.906127   186
[79] {RED HANGING HEART T-LIGHT HOLDER}    => {WHITE HANGING HEART T-LIGHT HOLDER}   0.0186  0.6888889   0.0270  8.380643   186
[80] {JUMBO  BAG BAROQUE BLACK WHITE}      => {JUMBO BAG RED RETROSPOT}              0.0147  0.5505618   0.0267  8.304100   147
[81] {JUMBO BAG PINK VINTAGE PAISLEY}      => {JUMBO BAG RED RETROSPOT}              0.0128  0.5493562   0.0233  8.285916   128
[82] {JUMBO BAG VINTAGE DOILY}             => {JUMBO BAG RED RETROSPOT}              0.0116  0.5155556   0.0225  7.776102   116
[83] {JUMBO SHOPPER VINTAGE RED PAISLEY}   => {JUMBO BAG RED RETROSPOT}              0.0152  0.5033113   0.0302  7.591422   152
[84] {JUMBO BAG WOODLAND ANIMALS}          => {JUMBO BAG RED RETROSPOT}              0.0101  0.5024876   0.0201  7.578998   101
[85] {GREEN REGENCY TEACUP AND SAUCER,                                                                                         
      PINK REGENCY TEACUP AND SAUCER}      => {REGENCY CAKESTAND 3 TIER}             0.0102  0.5312500   0.0192  6.846005   102
[86] {GREEN REGENCY TEACUP AND SAUCER,                                                                                         
      ROSES REGENCY TEACUP AND SAUCER}     => {REGENCY CAKESTAND 3 TIER}             0.0116  0.5110132   0.0227  6.585222   116

Part 6A(i)

If they bought WOODEN STAR CHRISTMAS SCANDINAVIAN it is implied that they will buy WOODEN HEART CHRISTMAS SCANDINAVIAN

Part 6A(ii)

confidence = 0.7533333 which means it is correct 75% of the time for purchases involving WOODEN STAR CHRISTMAS SCANDINAVIAN.

support = 0.0113 which means it covers 1.13% of all purchases.

Part 6A(iii)

Transactions including WOODEN STAR CHRISTMAS SCANDINAVIAN makes it 44.054581 more likely they will also buy WOODEN HEART CHRISTMAS SCANDINAVIAN

Part 6(b)

Trivial – rules that are so obvious that they are not worth mentioning. Example - wooden star christmas scandinavian and wooden heart christmas scandinavian.

Part 6 (c)

Actional rules provide insights that we can take action on to improve sales. Emample - PINK REGENCY TEACUP AND SAUCER and ROSES REGENCY TEACUP AND SAUCER. Management could do a 2 for 1 or buy 1 get 50% off the other deals to encourage second item purchase.

Part 7

rosesregancyteacupandsaucer_rules <- subset(retail_rules, items %in% "ROSES REGENCY TEACUP AND SAUCER")

inspect(rosesregancyteacupandsaucer_rules)
     lhs                                   rhs                               support confidence coverage      lift count
[1]  {PINK REGENCY TEACUP AND SAUCER}   => {ROSES REGENCY TEACUP AND SAUCER}  0.0177  0.7314050   0.0242 21.964113   177
[2]  {ROSES REGENCY TEACUP AND SAUCER}  => {PINK REGENCY TEACUP AND SAUCER}   0.0177  0.5315315   0.0333 21.964113   177
[3]  {GREEN REGENCY TEACUP AND SAUCER}  => {ROSES REGENCY TEACUP AND SAUCER}  0.0227  0.7394137   0.0307 22.204615   227
[4]  {ROSES REGENCY TEACUP AND SAUCER}  => {GREEN REGENCY TEACUP AND SAUCER}  0.0227  0.6816817   0.0333 22.204615   227
[5]  {GREEN REGENCY TEACUP AND SAUCER,                                                                                  
      PINK REGENCY TEACUP AND SAUCER}   => {ROSES REGENCY TEACUP AND SAUCER}  0.0156  0.8125000   0.0192 24.399399   156
[6]  {PINK REGENCY TEACUP AND SAUCER,                                                                                   
      ROSES REGENCY TEACUP AND SAUCER}  => {GREEN REGENCY TEACUP AND SAUCER}  0.0156  0.8813559   0.0177 28.708662   156
[7]  {GREEN REGENCY TEACUP AND SAUCER,                                                                                  
      ROSES REGENCY TEACUP AND SAUCER}  => {PINK REGENCY TEACUP AND SAUCER}   0.0156  0.6872247   0.0227 28.397714   156
[8]  {GREEN REGENCY TEACUP AND SAUCER,                                                                                  
      ROSES REGENCY TEACUP AND SAUCER}  => {REGENCY CAKESTAND 3 TIER}         0.0116  0.5110132   0.0227  6.585222   116
[9]  {GREEN REGENCY TEACUP AND SAUCER,                                                                                  
      REGENCY CAKESTAND 3 TIER}         => {ROSES REGENCY TEACUP AND SAUCER}  0.0116  0.7891156   0.0147 23.697167   116
[10] {REGENCY CAKESTAND 3 TIER,                                                                                         
      ROSES REGENCY TEACUP AND SAUCER}  => {GREEN REGENCY TEACUP AND SAUCER}  0.0116  0.7483871   0.0155 24.377430   116

Question 2

Part 1

library(recommenderlab)

library(tidyverse)

Part 2

steam_ratings <- read_csv("steam_ratings.csv")

steam_ratings <- as(steam_ratings, "matrix")

steam_ratings <- as(steam_ratings, "realRatingMatrix")

Part 3(a)

data(steam_ratings)

steam_ratings
2080 x 1581 rating matrix of class 'realRatingMatrix' with 52414 ratings.

View(as(MovieLense, “matrix”))

View(as(steam_ratings, "matrix"))
vector_ratings <- as.vector(steam_ratings@data)

table(vector_ratings)
vector_ratings
      0       1       2       3       4       5 
3236066    4773   12500   19762   10655    4724 

Part 3(b)

colMeans(steam_ratings) %>%

tibble::enframe(name = "games", value = "vector_rating") %>% 
ggplot() +

geom_histogram(mapping = aes(x = vector_rating), color = "magenta", fill = "magenta4", bins = 30) +
labs(

title = "Distribution of Average Game Ratings",

x = "Average Rating",

y = "Count",

caption = "Data source: Steam Ratings"

) +

 theme_minimal()

Part 3(c)

user_game_counts <- rowCounts(steam_ratings)

user_game_counts %>%

 tibble::enframe(name = "user", value = "num_games_rated") %>%

 ggplot() +

 geom_histogram(mapping = aes(x = num_games_rated), color = "magenta", fill = "magenta4", bins = 30) +

 labs(

 title = "Distribution of Total Games Rated by Each User",

 x = "Number of Games Rated",

 y = "Count of Users",

 caption = "Data source: Steam Ratings"

 ) +

 theme_minimal()

Part 4(a)

set.seed(101)

Part 4(b)

eval_games <- evaluationScheme(data = steam_ratings,

method = "split", 

train = 0.8, 

given = 6, 

 goodRating = 3)

Part 4(c)

train_games <- getData (eval_games, "train")

known_games <- getData (eval_games, "known")

unknown_games <- getData (eval_games, "unknown")

Part 5(a)

ubcf_model_1 <- Recommender(data = train_games,
                          method = "UBCF", 
                          parameter = list(normalize = "center", method = "Cosine"))

ubcf_model_2 <- Recommender(data = train_games,
                          method = "UBCF", 
                          parameter = list(normalize = "Z-score", method = "Cosine"))

ubcf_model_3 <- Recommender(data = train_games,
                          method = "UBCF", 
                          parameter = list(normalize = NULL, method = "Cosine"))


ubcf_model_4 <- Recommender(data = train_games,
                          method = "UBCF", 
                          parameter = list(normalize = "center", method = "Euclidean"))

ubcf_model_5 <- Recommender(data = train_games,
                          method = "UBCF", 
                          parameter = list(normalize = "Z-score", method = "Euclidean"))

ubcf_model_6 <- Recommender(data = train_games,
                          method = "UBCF", 
                          parameter = list(normalize = NULL, method = "Euclidean"))


ubcf_model_7 <- Recommender(data = train_games,
                          method = "UBCF", 
                          parameter = list(normalize = "center", method = "Pearson"))

ubcf_model_8 <- Recommender(data = train_games,
                          method = "UBCF", 
                          parameter = list(normalize = "Z-score", method = "Pearson"))

ubcf_model_9 <- Recommender(data = train_games,
                          method = "UBCF", 
                          parameter = list(normalize = NULL, method = "Pearson"))

Part 5 (b)

ubcf_predict_1 <- predict(object = ubcf_model_1,
                        newdata = known_games, 
                        type = "ratings")

ubcf_eval_1 <- calcPredictionAccuracy(x = ubcf_predict_1,
                                    data = unknown_games)
ubcf_eval_1
     RMSE       MSE       MAE 
1.1697655 1.3683514 0.9183398 
MAE = 0.9183398
ubcf_predict_2 <- predict(object = ubcf_model_2,
                        newdata = known_games, 
                        type = "ratings")

ubcf_eval_2 <- calcPredictionAccuracy(x = ubcf_predict_2,
                                    data = unknown_games)
ubcf_eval_2
    RMSE      MSE      MAE 
1.184555 1.403170 0.923375 
MAE = 0.923375
ubcf_predict_3 <- predict(object = ubcf_model_3,
                        newdata = known_games, 
                        type = "ratings")

ubcf_eval_3 <- calcPredictionAccuracy(x = ubcf_predict_3,
                                    data = unknown_games)
ubcf_eval_3
     RMSE       MSE       MAE 
1.0793268 1.1649463 0.8189319 
MAE = 0.8189319
ubcf_predict_4 <- predict(object = ubcf_model_4,
                        newdata = known_games, 
                        type = "ratings")

ubcf_eval_4 <- calcPredictionAccuracy(x = ubcf_predict_4,
                                    data = unknown_games)
ubcf_eval_4
     RMSE       MSE       MAE 
1.1910345 1.4185633 0.9163087 
MAE = 0.9163087
ubcf_predict_5 <- predict(object = ubcf_model_5,
                        newdata = known_games, 
                        type = "ratings")

ubcf_eval_5 <- calcPredictionAccuracy(x = ubcf_predict_5,
                                    data = unknown_games)
ubcf_eval_5
     RMSE       MSE       MAE 
1.2103032 1.4648339 0.9309624 
MAE = 0.9309624
ubcf_predict_6 <- predict(object = ubcf_model_6,
                        newdata = known_games, 
                        type = "ratings")

ubcf_eval_6 <- calcPredictionAccuracy(x = ubcf_predict_6,
                                    data = unknown_games)
ubcf_eval_6
     RMSE       MSE       MAE 
1.0990975 1.2080152 0.8294308 
MAE = 0.8294308
ubcf_predict_7 <- predict(object = ubcf_model_7,
                        newdata = known_games, 
                        type = "ratings")

ubcf_eval_7 <- calcPredictionAccuracy(x = ubcf_predict_7,
                                    data = unknown_games)
ubcf_eval_7
     RMSE       MSE       MAE 
1.1212624 1.2572293 0.8702777 
MAE = 0.8702777
ubcf_predict_8 <- predict(object = ubcf_model_8,
                        newdata = known_games, 
                        type = "ratings")

ubcf_eval_8 <- calcPredictionAccuracy(x = ubcf_predict_8,
                                    data = unknown_games)
ubcf_eval_8
     RMSE       MSE       MAE 
1.1345807 1.2872733 0.8790968 
MAE = 0.8790968
ubcf_predict_9 <- predict(object = ubcf_model_9,
                        newdata = known_games, 
                        type = "ratings")

ubcf_eval_9 <- calcPredictionAccuracy(x = ubcf_predict_9,
                                    data = unknown_games)
ubcf_eval_9
     RMSE       MSE       MAE 
1.1086429 1.2290892 0.8349371 
MAE = 0.8349371

Part 6(a)

ibcf_model_1 <- Recommender(data = train_games,
                          method = "IBCF", 
                          parameter = list(normalize = "center", method = "Cosine"))

ibcf_model_2 <- Recommender(data = train_games,
                          method = "IBCF", 
                          parameter = list(normalize = "Z-score", method = "Cosine"))

ibcf_model_3 <- Recommender(data = train_games,
                          method = "IBCF", 
                          parameter = list(normalize = NULL, method = "Cosine"))


ibcf_model_4 <- Recommender(data = train_games,
                          method = "IBCF", 
                          parameter = list(normalize = "center", method = "Euclidean"))

ibcf_model_5 <- Recommender(data = train_games,
                          method = "IBCF", 
                          parameter = list(normalize = "Z-score", method = "Euclidean"))

ibcf_model_6 <- Recommender(data = train_games,
                          method = "IBCF", 
                          parameter = list(normalize = NULL, method = "Euclidean"))


ibcf_model_7 <- Recommender(data = train_games,
                          method = "IBCF", 
                          parameter = list(normalize = "center", method = "Pearson"))

ibcf_model_8 <- Recommender(data = train_games,
                          method = "IBCF", 
                          parameter = list(normalize = "Z-score", method = "Pearson"))

ibcf_model_9 <- Recommender(data = train_games,
                          method = "IBCF", 
                          parameter = list(normalize = NULL, method = "Pearson"))

Part 6(b)

ibcf_predict_1 <- predict(object = ibcf_model_1,
                        newdata = known_games, 
                        type = "ratings")

ibcf_eval <- calcPredictionAccuracy(x = ibcf_predict_1,
                                    data = unknown_games)
ibcf_eval
    RMSE      MSE      MAE 
1.500713 2.252139 1.165198 
MAE = 1.165198
ibcf_predict_2 <- predict(object = ibcf_model_2,
                        newdata = known_games, 
                        type = "ratings")

ibcf_eval <- calcPredictionAccuracy(x = ibcf_predict_2,
                                    data = unknown_games)
ibcf_eval
    RMSE      MSE      MAE 
1.500976 2.252928 1.163775 
MAE = 1.163775
ibcf_predict_3 <- predict(object = ibcf_model_3,
                        newdata = known_games, 
                        type = "ratings")

ibcf_eval <- calcPredictionAccuracy(x = ibcf_predict_3,
                                    data = unknown_games)
ibcf_eval
    RMSE      MSE      MAE 
1.587257 2.519385 1.239649 
MAE = 1.239649
ibcf_predict_4 <- predict(object = ibcf_model_4,
                        newdata = known_games, 
                        type = "ratings")

ibcf_eval <- calcPredictionAccuracy(x = ibcf_predict_4,
                                    data = unknown_games)
ibcf_eval
    RMSE      MSE      MAE 
1.477274 2.182339 1.142542 
MAE = 1.142542
ibcf_predict_5 <- predict(object = ibcf_model_5,
                        newdata = known_games, 
                        type = "ratings")

ibcf_eval <- calcPredictionAccuracy(x = ibcf_predict_5,
                                    data = unknown_games)
ibcf_eval
    RMSE      MSE      MAE 
1.475157 2.176087 1.141132 
MAE = 1.141132
ibcf_predict_6 <- predict(object = ibcf_model_6,
                        newdata = known_games, 
                        type = "ratings")

ibcf_eval <- calcPredictionAccuracy(x = ibcf_predict_6,
                                    data = unknown_games)
ibcf_eval
    RMSE      MSE      MAE 
1.476175 2.179092 1.140654 
MAE = 1.140654
ibcf_predict_7 <- predict(object = ibcf_model_7,
                        newdata = known_games, 
                        type = "ratings")

ibcf_eval <- calcPredictionAccuracy(x = ibcf_predict_7,
                                    data = unknown_games)
ibcf_eval
    RMSE      MSE      MAE 
1.470169 2.161397 1.158908 
MAE = 1.158908
ibcf_predict_8 <- predict(object = ibcf_model_8,
                        newdata = known_games, 
                        type = "ratings")

ibcf_eval <- calcPredictionAccuracy(x = ibcf_predict_8,
                                    data = unknown_games)
ibcf_eval
    RMSE      MSE      MAE 
1.467355 2.153130 1.158796 
MAE = 1.156796
ibcf_predict_9 <- predict(object = ibcf_model_9,
                        newdata = known_games, 
                        type = "ratings")

ibcf_eval <- calcPredictionAccuracy(x = ibcf_predict_9,
                                    data = unknown_games)
ibcf_eval
    RMSE      MSE      MAE 
1.456788 2.122230 1.152312 
MAE = 1.152312

Part 7

ubcf_recs <- predict (object = ubcf_model_3,
                      newdata = known_games,
                      type = "ratings",
                      n = 3) 

ubcf_recs_list <- as(ubcf_recs, "list")
ubcf_recs_list[1:5]
$`0`
                       AdVenture Capitalist 
                                   2.500000 
               Age of Empires II HD Edition 
                                   2.000000 
                                    AirMech 
                                   2.000000 
                            Alien Isolation 
                                   4.000000 
                              Amazing World 
                                   4.000000 
                   Amnesia The Dark Descent 
                                   3.500000 
                                  Anno 1404 
                                   3.000000 
                                 Archeblade 
                                   3.000000 
                       ARK Survival Evolved 
                                   3.000000 
                                     Arma 2 
                                   2.000000 
                                     Arma 3 
                                   3.000000 
                      Arma Cold War Assault 
                                   3.000000 
                               Aura Kingdom 
                                   3.000000 
                                   Banished 
                                   4.000000 
                             Battle Nations 
                                   1.000000 
                                 BioShock 2 
                                   4.000000 
                     Blacklight Retribution 
                                   2.500000 
                                Borderlands 
                                   2.000000 
                              Borderlands 2 
                                   3.200000 
                         Bridge Constructor 
                                   5.000000 
          Burnout Paradise The Ultimate Box 
                                   3.000000 
                     Call of Duty Black Ops 
                                   3.000000 
                  Call of Duty Black Ops II 
                                   3.000000 
        Call of Duty Black Ops II - Zombies 
                                   2.000000 
                        Call of Duty Ghosts 
                                   4.000000 
              Call of Duty Modern Warfare 3 
                                   3.500000 
Call of Duty Modern Warfare 3 - Multiplayer 
                                   3.000000 
                  Call of Duty World at War 
                                   4.000000 
                              Canyon Capers 
                                   4.000000 
                Car Mechanic Simulator 2014 
                                   5.000000 
                            Castle Crashers 
                                   4.000000 
                           Champions Online 
                                   3.000000 
                            Cities Skylines 
                                   4.000000 
                              Codename CURE 
                                   1.000000 
            Counter-Strike Global Offensive 
                                   2.750000 
               Counter-Strike Nexon Zombies 
                                   2.000000 
                      Counter-Strike Source 
                                   3.000000 
                              Crash Time II 
                                   3.000000 
                                Creativerse 
                                   4.000000 
                                Cry of Fear 
                                   4.000000 
                                     Crysis 
                                   4.000000 
                   Crysis 2 Maximum Edition 
                                   4.000000 
                                 Darksiders 
                                   2.000000 
                              Darksiders II 
                                   4.000000 
                       Day of Defeat Source 
                                   2.000000 
                                       DayZ 
                                   2.000000 
                         DC Universe Online 
                                   2.333333 
                                Dead Island 
                                   3.000000 
                                 Dead Realm 
                                   3.000000 
                                   Defiance 
                                   1.000000 
                                Democracy 3 
                                   5.000000 
                                 Dino D-Day 
                                   1.000000 
                                 Dirty Bomb 
                                   2.000000 
                 Don't Starve Together Beta 
                                   2.000000 
                                     Dota 2 
                                   2.200000 
                       Driver San Francisco 
                                   3.000000 
                       Dungeon Defenders II 
                                   4.000000 
                               Echo of Soul 
                                   4.000000 
                                Endless Sky 
                                   3.500000 
                                 Epigenesis 
                                   1.000000 
                     Euro Truck Simulator 2 
                                   4.000000 
                         Everlasting Summer 
                                   2.000000 
                         EVGA PrecisionX 16 
                                   1.000000 
                                 F.E.A.R. 3 
                                   4.000000 
                               Fallen Earth 
                                   2.000000 
                                  Fallout 4 
                                   4.000000 
                          Fallout New Vegas 
                                   3.500000 
                                  Far Cry 3 
                                   3.000000 
                       Farming Simulator 15 
                                   4.000000 
                     Farming Simulator 2013 
                                   2.000000 
                   FlatOut Ultimate Carnage 
                                   4.000000 
                      Football Manager 2009 
                                   4.000000 
                      Football Manager 2010 
                                   4.000000 
                      Football Manager 2011 
                                   4.000000 
                      Football Manager 2012 
                                   4.000000 
                      Football Manager 2013 
                                   3.000000 
                      Football Manager 2014 
                                   3.000000 
                      Football Manager 2015 
                                   3.000000 
                              Frozen Hearth 
                                   5.000000 
  Game of Thrones - A Telltale Games Series 
                                   4.000000 
                           GameMaker Studio 
                                   2.000000 
                                Garry's Mod 
                                   2.333333 
                                   Gauntlet 
                                   3.000000 
                        Grand Theft Auto IV 
                                   3.000000 
               Grand Theft Auto San Andreas 
                                   3.000000 
                                  Half-Life 
                                   3.000000 
                     Half-Life 2 Deathmatch 
                                   3.000000 
                    Half-Life 2 Episode One 
                                   4.000000 
                    Half-Life 2 Episode Two 
                                   5.000000 
                     Half-Life 2 Lost Coast 
                                   3.000000 
                         Half-Life 2 Update 
                                   5.000000 
                       Half-Life Blue Shift 
                                   4.000000 
                   Half-Life Opposing Force 
                                   4.000000 
                                     HAWKEN 
                                   2.000000 
                                 Hazard Ops 
                                   3.000000 
                          Heroes & Generals 
                                   2.500000 
                                 I am Bread 
                                   4.000000 
                            Infinite Crisis 
                                   1.000000 
                               Just Cause 2 
                                   1.000000 
               Just Cause 2 Multiplayer Mod 
                                   2.000000 
           Keep Talking and Nobody Explodes 
                                   5.000000 
               Kingdoms of Amalur Reckoning 
                                   3.000000 
                                 L.A. Noire 
                                   4.000000 
                                    La Tale 
                                   4.000000 
                              Left 4 Dead 2 
                                   2.000000 
                                    Loadout 
                                   1.000000 
                                   Mafia II 
                                   3.500000 
                                 Magic 2014 
                                   3.000000 
                                Magic Duels 
                                   2.000000 
                                    Magicka 
                                   4.000000 
                        Magicka Wizard Wars 
                                   2.000000 
                                    McPixel 
                                   4.000000 
                         MechWarrior Online 
                                   2.000000 
                                 Metro 2033 
                                   3.000000 
                             Metro Conflict 
                                   1.000000 
                           Metro Last Light 
                                   4.000000 
 Microsoft Flight Simulator X Steam Edition 
                                   3.000000 
                              Mirror's Edge 
                                   2.000000 
                        Natural Selection 2 
                                   2.000000 
                 Need for Speed Hot Pursuit 
                                   3.000000 
                       Need for Speed SHIFT 
                                   3.000000 
                                   NEOTOKYO 
                                   3.000000 
                                Neverwinter 
                                   2.000000 
                       No More Room in Hell 
                                   3.000000 
                                    Nosgoth 
                                   2.750000 
                   Ori and the Blind Forest 
                                   3.000000 
                                    Outlast 
                                   3.000000 
           PAC-MAN Championship Edition DX+ 
                                   3.000000 
                              Path of Exile 
                                   3.000000 
                           PAYDAY The Heist 
                                   2.000000 
                                        Pid 
                                   4.000000 
                                Pinball FX2 
                                   3.000000 
                         Plague Inc Evolved 
                                   4.000000 
                               PlanetSide 2 
                                   2.000000 
        Plants vs. Zombies Game of the Year 
                                   4.000000 
                                     Portal 
                                   3.500000 
                                   Portal 2 
                                   3.000000 
                         Portal Stories Mel 
                                   5.000000 
                           Prison Architect 
                                   3.000000 
                                 Quake Live 
                                   3.000000 
                                    RACE 07 
                                   4.000000 
                 RaceRoom Racing Experience 
                                   3.000000 
                                   Ragnarok 
                                   3.000000 
                          Ragnarok Online 2 
                                   3.000000 
                       Realm of the Mad God 
                                   3.000000 
                      Retro City Rampage DX 
                                   3.000000 
                                       RIFT 
                                   2.000000 
                                  Robocraft 
                                   1.500000 
                               Saints Row 2 
                                   2.000000 
                              Saints Row IV 
                                   4.000000 
                       Saints Row The Third 
                                   3.000000 
                                  Sanctum 2 
                                   3.000000 
                                Screencheat 
                                   4.000000 
                 Sid Meier's Civilization V 
                                   3.000000 
                           SimCity 4 Deluxe 
                                   3.000000 
                            Sniper Elite V2 
                                   2.000000 
                            Soldier Front 2 
                                   4.000000 
                          Sonic Adventure 2 
                                   5.000000 
                           Source Filmmaker 
                                   1.000000 
                            Space Engineers 
                                   1.000000 
                                  Space Run 
                                   5.000000 
                                  Starbound 
                                   2.000000 
                             State of Decay 
                                   1.000000 
                              Stranded Deep 
                                   5.000000 
                        Stronghold Kingdoms 
                                   1.000000 
                          Surgeon Simulator 
                                   3.000000 
                                  Survarium 
                                   2.000000 
                             System Shock 2 
                                   1.000000 
                      Tactical Intervention 
                                   2.000000 
                            Team Fortress 2 
                                   1.733333 
                                   Terraria 
                                   2.750000 
                            The Darkness II 
                                   5.000000 
                             The Sims(TM) 3 
                                   4.000000 
                        The Stanley Parable 
                                   4.000000 
                        The Talos Principle 
                                   2.000000 
                              Time Clickers 
                                   5.000000 
     Tom Clancy's Ghost Recon Phantoms - EU 
                                   3.000000 
     Tom Clancy's Ghost Recon Phantoms - NA 
                                   2.000000 
                              Torchlight II 
                                   3.000000 
                                   Toribash 
                                   3.000000 
                  Total War Battles KINGDOM 
                                   3.000000 
                                Train Fever 
                                   5.000000 
                        Trainz Simulator 12 
                                   4.000000 
                                  Tropico 5 
                                   4.000000 
                                      Trove 
                                   2.000000 
                                   Unturned 
                                   2.375000 
                                War Thunder 
                                   2.000000 
                                    Warface 
                                   3.000000 
                                   Warframe 
                                   2.000000 
                               World of Goo 
                                   3.000000 
                          X-COM UFO Defense 
                                   5.000000 
                   You Have to Win the Game 
                                   1.000000 

$`1`
                                          7 Days to Die 
                                               2.500000 
                                                8BitMMO 
                                               5.000000 
                                   AdVenture Capitalist 
                                               2.250000 
                                        Age of Chivalry 
                                               2.000000 
                           Age of Empires II HD Edition 
                                               2.750000 
                 Age of Empires III Complete Collection 
                                               2.000000 
                                     Age of Wonders III 
                                               3.000000 
                                       Airline Tycoon 2 
                                               5.000000 
                                                AirMech 
                                               2.000000 
                         Alan Wake's American Nightmare 
                                               5.000000 
                                        Alien Isolation 
                                               3.500000 
                                            Alien Swarm 
                                               3.000000 
                                    Aliens vs. Predator 
                                               3.000000 
                             Amnesia A Machine for Pigs 
                                               3.000000 
                               Amnesia The Dark Descent 
                                               4.000000 
                                             Archeblade 
                                               4.000000 
                                   ARK Survival Evolved 
                                               2.000000 
                                                 Arma 2 
                                               3.500000 
                                        Arma 2 DayZ Mod 
                                               3.000000 
                             Arma 2 Operation Arrowhead 
                                               3.500000 
                                                 Arma 3 
                                               2.000000 
                                  Arma Cold War Assault 
                                               3.000000 
                                   Assassin's Creed III 
                                               3.000000 
                         Assassin's Creed IV Black Flag 
                                               4.000000 
                                          Assetto Corsa 
                                               3.000000 
                                              Audiosurf 
                                               4.000000 
                         Baldur's Gate Enhanced Edition 
                                               2.000000 
                                               Banished 
                                               3.400000 
                                                Bastion 
                                               5.000000 
                      Batman Arkham Asylum GOTY Edition 
                                               3.500000 
                                     Batman Arkham City 
                                               4.500000 
                                Batman Arkham City GOTY 
                                               3.000000 
                                         Battle Nations 
                                               1.000000 
                                    BattleBlock Theater 
                                               5.000000 
                                          Battlefield 2 
                                               3.000000 
                                            Beat Hazard 
                                               3.000000 
                                                Besiege 
                                               3.000000 
                                               BioShock 
                                               4.000000 
                                      BioShock Infinite 
                                               2.333333 
                                 Blacklight Retribution 
                                               4.000000 
                                              Blockland 
                                               4.000000 
                                             Blockstorm 
                                               4.000000 
                               Blood Bowl Chaos Edition 
                                               2.000000 
                                            Borderlands 
                                               3.000000 
                                          Borderlands 2 
                                               2.857143 
                                       Borderlands 2 RU 
                                               1.500000 
                                             Brawlhalla 
                                               3.000000 
                                            Brick-Force 
                                               3.000000 
                                     Bridge Constructor 
                                               5.000000 
                      Burnout Paradise The Ultimate Box 
                                               3.000000 
                                 Call of Duty Black Ops 
                                               3.500000 
                   Call of Duty Black Ops - Multiplayer 
                                               3.500000 
                              Call of Duty Black Ops II 
                                               2.000000 
                Call of Duty Black Ops II - Multiplayer 
                                               1.500000 
                    Call of Duty Black Ops II - Zombies 
                                               3.000000 
                          Call of Duty Modern Warfare 2 
                                               3.500000 
            Call of Duty Modern Warfare 2 - Multiplayer 
                                               3.500000 
                          Call of Duty Modern Warfare 3 
                                               3.500000 
            Call of Duty Modern Warfare 3 - Multiplayer 
                                               2.500000 
                              Call of Duty World at War 
                                               4.000000 
                              Call of Juarez Gunslinger 
                                               4.000000 
                            Car Mechanic Simulator 2014 
                                               5.000000 
                                        Castle Crashers 
                                               4.000000 
                                       Champions Online 
                                               5.000000 
                              Chivalry Medieval Warfare 
                                               2.000000 
                                        Cities Skylines 
                                               5.000000 
                                         Clicker Heroes 
                                               2.000000 
                     Command and Conquer 3 Kane's Wrath 
                                               5.000000 
                    Command and Conquer 3 Tiberium Wars 
                                               3.000000 
                Command and Conquer 4 Tiberian Twilight 
                                               3.000000 
                                      Company of Heroes 
                                               3.000000 
                                    Company of Heroes 2 
                                               3.000000 
                      Company of Heroes Opposing Fronts 
                                               1.000000 
                            Construction-Simulator 2015 
                                               3.000000 
                                              Contagion 
                                               3.000000 
                                Cook, Serve, Delicious! 
                                               5.000000 
                                         Counter-Strike 
                                               2.500000 
                          Counter-Strike Condition Zero 
                                               2.000000 
                        Counter-Strike Global Offensive 
                                               3.285714 
                           Counter-Strike Nexon Zombies 
                                               1.500000 
                                  Counter-Strike Source 
                                               2.250000 
                                          Crash Time II 
                                               3.000000 
                                            Creativerse 
                                               4.000000 
                                      Crusader Kings II 
                                               4.000000 
                                            Cry of Fear 
                                               3.000000 
                               Crypt of the NecroDancer 
                                               4.000000 
                                   D.I.P.R.I.P. Warm Up 
                                               2.000000 
                                          DARK SOULS II 
                                               3.500000 
                 DARK SOULS II Scholar of the First Sin 
                                               3.000000 
                      Dark Souls Prepare to Die Edition 
                                               3.000000 
                                          Darksiders II 
                                               4.000000 
                                          Day of Defeat 
                                               2.000000 
                                   Day of Defeat Source 
                                               2.000000 
                                                   DayZ 
                                               1.500000 
                                     DC Universe Online 
                                               1.500000 
                                            Dead Island 
                                               3.666667 
                                   Dead Island Epidemic 
                                               2.500000 
                                    Dead Island Riptide 
                                               3.000000 
                                          Dead Rising 2 
                                               5.000000 
                                          Dead Rising 3 
                                               3.000000 
                                              Deadlight 
                                               3.000000 
                                               Defiance 
                                               1.000000 
                                             Dino D-Day 
                                               1.000000 
                                DiRT 3 Complete Edition 
                                               4.000000 
                                             Dishonored 
                                               4.000000 
                                        Dishonored (RU) 
                                               2.000000 
                                           Don't Starve 
                                               3.500000 
                             Don't Starve Together Beta 
                                               3.000000 
                                                 Dota 2 
                                               2.000000 
                          Duke Nukem 3D Megaton Edition 
                                               3.000000 
                                      Dungeon Defenders 
                                               4.000000 
                                   Dungeon Defenders II 
                                               4.000000 
                                          Dungeon Siege 
                                               5.000000 
                                    Dungeons of Dredmor 
                                               4.000000 
                                E.Y.E Divine Cybermancy 
                                               5.000000 
                                       Empire Total War 
                                               3.000000 
                                            Endless Sky 
                                               3.000000 
                                          Endless Space 
                                               4.000000 
                                 Euro Truck Simulator 2 
                                               3.166667 
                                  Europa Universalis IV 
                                               4.000000 
                                     EVGA PrecisionX 16 
                                               1.000000 
                                               F.E.A.R. 
                                               4.000000 
                              Fable - The Lost Chapters 
                                               3.000000 
                                              Fable III 
                                               4.000000 
                   Fallout 3 - Game of the Year Edition 
                                               5.000000 
                                              Fallout 4 
                                               3.000000 
                                      Fallout New Vegas 
                                               3.333333 
                                              Far Cry 3 
                                               3.333333 
                                              Far Cry 4 
                                               5.000000 
                                   Farming Simulator 15 
                                               2.500000 
                                 Farming Simulator 2013 
                                               3.000000 
                                                    FEZ 
                                               3.000000 
                                      FINAL FANTASY VII 
                                               5.000000 
                                   FINAL FANTASY XIII-2 
                                               5.000000 
                                       Fistful of Frags 
                                               2.000000 
                                              FlatOut 2 
                                               5.000000 
                               FlatOut Ultimate Carnage 
                                               4.000000 
                                  Football Manager 2009 
                                               5.000000 
                                  Football Manager 2010 
                                               4.000000 
                                  Football Manager 2011 
                                               5.000000 
                                  Football Manager 2012 
                                               4.500000 
                                  Football Manager 2013 
                                               4.500000 
                                  Football Manager 2014 
                                               4.000000 
                                  Football Manager 2015 
                                               4.000000 
                                  Football Manager 2016 
                                               5.000000 
                                                 FORCED 
                                               4.500000 
                                              From Dust 
                                               3.000000 
                                  FTL Faster Than Light 
                                               3.000000 
                                                   Fuse 
                                               3.000000 
             Galactic Civilizations II Ultimate Edition 
                                               2.000000 
                                        Game Dev Tycoon 
                                               2.500000 
                                        Game of Thrones 
                                               4.000000 
                                       GameMaker Studio 
                                               2.000000 
                                            Garry's Mod 
                                               2.500000 
                                          Geometry Dash 
                                               5.000000 
                                         Goat Simulator 
                                               3.000000 
                                                  Godus 
                                               4.000000 
                                  Gotham City Impostors 
                                               5.000000 
                     Gotham City Impostors Free To Play 
                                               3.000000 
                                    Grand Theft Auto IV 
                                               3.000000 
                           Grand Theft Auto San Andreas 
                                               2.000000 
                                     Grand Theft Auto V 
                                               3.400000 
                             Grand Theft Auto Vice City 
                                               2.000000 
                                             Guild Wars 
                                               3.000000 
                                               Gunpoint 
                                               4.000000 
                                                   H1Z1 
                                               3.000000 
                                              Half-Life 
                                               3.000000 
                                            Half-Life 2 
                                               4.000000 
                                 Half-Life 2 Deathmatch 
                                               2.000000 
                                Half-Life 2 Episode One 
                                               3.333333 
                                Half-Life 2 Episode Two 
                                               3.666667 
                                 Half-Life 2 Lost Coast 
                                               3.000000 
                                     Half-Life 2 Update 
                                               5.000000 
                                                 HAWKEN 
                                               2.000000 
                                      Heroes & Generals 
                                               2.000000 
                                                  HOARD 
                                               4.000000 
                                              Homefront 
                                               4.000000 
                        Homeworld Remastered Collection 
                                               1.500000 
                                         How to Survive 
                                               3.000000 
                                             I am Bread 
                                               4.000000 
                           Infestation Survivor Stories 
                                               3.000000 
                                        Infinite Crisis 
                                               1.000000 
               Injustice Gods Among Us Ultimate Edition 
                                               4.000000 
                                             Insurgency 
                                               3.000000 
                                           Just Cause 2 
                                               2.666667 
                                          Killing Floor 
                                               3.500000 
                                        Killing Floor 2 
                                               3.000000 
                   Killing Floor Mod Defence Alliance 2 
                                               4.000000 
                                 King Arthur Collection 
                                               3.000000 
                            Knights of Pen and Paper +1 
                                               5.000000 
                                          Left 4 Dead 2 
                                               2.000000 
                                     Legend of Grimrock 
                                               2.000000 
                                    LEGO Jurassic World 
                                               5.000000 
                   LIGHTNING RETURNS FINAL FANTASY XIII 
                                               3.000000 
                                                Loadout 
                                               1.500000 
                                               Mafia II 
                                               3.000000 
                                             Magic 2014 
                                               3.000000 
                                            Magic Duels 
                                               3.000000 
   Magic The Gathering  Duels of the Planeswalkers 2012 
                                               3.000000 
                                                Magicka 
                                               4.000000 
                                    Magicka Wizard Wars 
                                               2.000000 
                                     Marvel Heroes 2015 
                                               1.000000 
                                            Max Payne 3 
                                               4.000000 
                                                McPixel 
                                               4.000000 
                                     MechWarrior Online 
                                               2.000000 
                         Medal of Honor(TM) Multiplayer 
                                               5.000000 
                       Medal of Honor(TM) Single Player 
                                               5.000000 
                                     Medieval Engineers 
                                               3.000000 
                                  Medieval II Total War 
                                               4.000000 
                         Medieval II Total War Kingdoms 
                                               3.000000 
                               Men of War Assault Squad 
                                               3.000000 
                       METAL GEAR SOLID V GROUND ZEROES 
                                               5.000000 
                    METAL GEAR SOLID V THE PHANTOM PAIN 
                                               3.500000 
                                             Metro 2033 
                                               2.000000 
             Microsoft Flight Simulator X Steam Edition 
                                               3.000000 
                          Middle-earth Shadow of Mordor 
                                               3.000000 
         Minecraft Story Mode - A Telltale Games Series 
                                               5.000000 
                                      Mitos.is The Game 
                                               5.000000 
                                                 Monaco 
                                               4.000000 
                                    Monday Night Combat 
                                               5.000000 
                                          Mount & Blade 
                                               3.000000 
                                  Mount & Blade Warband 
                                               3.000000 
                      Mount & Blade With Fire and Sword 
                                               3.000000 
                                          Murder Miners 
                                               5.000000 
                                    Natural Selection 2 
                                               2.000000 
                             Need for Speed Hot Pursuit 
                                               3.000000 
                                   Need for Speed SHIFT 
                                               3.000000 
                                        NEKOPARA Vol. 0 
                                               5.000000 
                                        NEKOPARA Vol. 1 
                                               5.000000 
                                               NEOTOKYO 
                                               3.000000 
                                            Neverwinter 
                                               2.000000 
                          Neverwinter Nights 2 Platinum 
                                               4.000000 
                                   No More Room in Hell 
                                               3.000000 
                                                Nosgoth 
                                               2.000000 
                                           Nuclear Dawn 
                                               3.000000 
                                         Nuclear Throne 
                                               3.000000 
                                 Octodad Dadliest Catch 
                                               4.000000 
                                         Orcs Must Die! 
                                               4.000000 
                                       Orcs Must Die! 2 
                                               3.500000 
                               Ori and the Blind Forest 
                                               3.000000 
                                          ORION Prelude 
                                               2.000000 
                                                Outlast 
                                               3.000000 
                       PAC-MAN Championship Edition DX+ 
                                               4.000000 
                                          Path of Exile 
                                               2.333333 
                                               PAYDAY 2 
                                               3.400000 
                                       PAYDAY The Heist 
                                               4.000000 
                                                    Pid 
                                               4.000000 
                                            Pinball FX2 
                                               3.000000 
                         Pirates, Vikings, & Knights II 
                                               5.000000 
                                           Pixel Piracy 
                                               2.500000 
                                         PixelJunk Eden 
                                               1.000000 
                                     Plague Inc Evolved 
                                               4.000000 
                                           PlanetSide 2 
                                               2.000000 
                           Poker Night at the Inventory 
                                               3.000000 
                                          Port Royale 3 
                                               3.000000 
                                                 Portal 
                                               3.333333 
                                               Portal 2 
                                               3.142857 
                                     Portal Stories Mel 
                                               4.500000 
                                Post Apocalyptic Mayhem 
                                               5.000000 
                                             Quake Live 
                                               3.000000 
                                                R.U.S.E 
                                               3.000000 
                                                RACE 07 
                                               4.000000 
                             RaceRoom Racing Experience 
                                               3.000000 
                                 Red Faction Armageddon 
                                               3.000000 
                    Red Faction Guerrilla Steam Edition 
                                               4.000000 
   Red Orchestra 2 Heroes of Stalingrad - Single Player 
                                               3.000000 
                                                   RIFT 
                                               2.000000 
                       Rise of Nations Extended Edition 
                                               4.000000 
               Rising Storm/Red Orchestra 2 Multiplayer 
                                               3.000000 
                                              Robocraft 
                                               2.000000 
                                          Rocket League 
                                               3.000000 
                                           Rogue Legacy 
                                               3.000000 
                                         Rome Total War 
                                               3.000000 
                                            Royal Quest 
                                               5.000000 
                                                   Rust 
                                               3.000000 
                                           Saints Row 2 
                                               2.333333 
                                          Saints Row IV 
                                               3.750000 
                                   Saints Row The Third 
                                               3.333333 
                                              Sanctum 2 
                                               2.666667 
                                            Screencheat 
                                               4.000000 
                                    Section 8 Prejudice 
                                               5.000000 
                     Serious Sam HD The First Encounter 
                                               3.000000 
                    Serious Sam HD The Second Encounter 
                                               3.000000 
                                      Shadowrun Returns 
                                               3.000000 
                             Sid Meier's Civilization V 
                                               3.250000 
                                   Sid Meier's Pirates! 
                                               4.000000 
                                          Sleeping Dogs 
                                               4.000000 
                       Sleeping Dogs Definitive Edition 
                                               3.000000 
                                              Smashball 
                                               3.500000 
                                         Sniper Elite 3 
                                               3.000000 
                                        Sniper Elite V2 
                                               4.000000 
                                   Sniper Ghost Warrior 
                                               2.500000 
                                        Soldier Front 2 
                                               4.000000 
                   Sonic & All-Stars Racing Transformed 
                                               3.000000 
                                       Source Filmmaker 
                                               1.000000 
                          South Park The Stick of Truth 
                                               4.000000 
                                        Space Engineers 
                                               2.000000 
                                              Space Run 
                                               5.000000 
                                      Spec Ops The Line 
                                               4.000000 
                                              Spintires 
                                               4.000000 
                                         Spiral Knights 
                                               2.000000 
                                       Star Trek Online 
                                               2.500000 
                             Star Wars - Battlefront II 
                                               4.000000 
                Star Wars - Jedi Knight II Jedi Outcast 
                                               3.000000 
                           Star Wars Empire at War Gold 
                                               3.000000 
                     Star Wars Jedi Knight Jedi Academy 
                                               3.000000 
                  Star Wars Knights of the Old Republic 
                                               4.000000 
STAR WARS Knights of the Old Republic II The Sith Lords 
                                               5.000000 
                            Star Wars Republic Commando 
                                               5.000000 
                                              Starbound 
                                               3.000000 
                                              StarForge 
                                               3.000000 
                                         State of Decay 
                                               1.000000 
                                          Stranded Deep 
                                               2.000000 
                                           Stronghold 2 
                                               3.000000 
                                           Stronghold 3 
                                               4.000000 
                                 Stronghold Crusader HD 
                                               3.000000 
                                          Stronghold HD 
                                               5.000000 
                                    Stronghold Kingdoms 
                                               1.000000 
                                     Stronghold Legends 
                                               3.000000 
                                         Super Meat Boy 
                                               2.500000 
                                              Survarium 
                                               2.000000 
                                 Swords and Soldiers HD 
                                               4.000000 
                                                Synergy 
                                               3.000000 
                                     Tabletop Simulator 
                                               3.000000 
                                  Tactical Intervention 
                                               2.000000 
                                        Team Fortress 2 
                                               2.333333 
                                   The Binding of Isaac 
                                               2.000000 
                                               The Crew 
                                               4.000000 
                        The Elder Scrolls III Morrowind 
                                               3.000000 
                          The Elder Scrolls IV Oblivion 
                                               3.000000 
                             The Elder Scrolls V Skyrim 
                                               2.857143 
                                          The Escapists 
                                               4.000000 
                                             The Forest 
                                               3.000000 
               The Incredible Adventures of Van Helsing 
                                               3.000000 
                                 The Jackbox Party Pack 
                                               5.000000 
                THE KING OF FIGHTERS XIII STEAM EDITION 
                                               4.000000 
                 The Lord of the Rings War in the North 
                                               3.000000 
                                         The Sims(TM) 3 
                                               3.000000 
                                    The Talos Principle 
                                               2.000000 
                                       The Walking Dead 
                                               4.000000 
                            The Walking Dead Season Two 
                                               3.000000 
                           The Way of Life Free Edition 
                                               1.000000 
      The Witcher 2 Assassins of Kings Enhanced Edition 
                                               2.000000 
                                The Witcher 3 Wild Hunt 
                                               2.000000 
                           The Witcher Enhanced Edition 
                                               3.000000 
                                   Thief Deadly Shadows 
                                               4.000000 
                             Thinking with Time Machine 
                                               3.000000 
                                         Ticket to Ride 
                                               4.000000 
                                          Time Clickers 
                                               5.000000 
                 Tom Clancy's Ghost Recon Phantoms - NA 
                                               2.000000 
                                          Torchlight II 
                                               2.500000 
                                               Toribash 
                                               3.000000 
                                       Total War ATTILA 
                                               5.000000 
                              Total War Battles KINGDOM 
                                               3.000000 
                    Total War ROME II - Emperor Edition 
                                               3.000000 
                                     Total War SHOGUN 2 
                                               3.000000 
                                          Town of Salem 
                                               4.000000 
                                     TrackMania Stadium 
                                               4.000000 
                                      TrackMania United 
                                               5.000000 
                                            Train Fever 
                                               5.000000 
                                        Train Simulator 
                                               3.000000 
                                    Trainz Simulator 12 
                                               4.000000 
                                             Transistor 
                                               4.000000 
                          Trials Evolution Gold Edition 
                                               3.000000 
                                                Trine 2 
                                               5.000000 
                                                  Trove 
                                               1.000000 
                                         Turbo Dismount 
                                               2.000000 
                                          Two Worlds II 
                                               5.000000 
                                             UberStrike 
                                               3.000000 
                                Ultra Street Fighter IV 
                                               3.000000 
                                       Universe Sandbox 
                                               3.000000 
                                               Unturned 
                                               2.200000 
                                         Velvet Sundown 
                                               5.000000 
                                   Villagers and Heroes 
                                               5.000000 
                                 Viscera Cleanup Detail 
                                               5.000000 
                                       War of the Roses 
                                               3.000000 
                                            War Thunder 
                                               2.000000 
                                                Warface 
                                               3.000000 
                                               Warframe 
                                               2.200000 
           Warhammer 40,000 Dawn of War II  Retribution 
                                               3.000000 
                                             Watch_Dogs 
                                               4.000000 
                                           Wild Warfare 
                                               5.000000 
                              Wolfenstein The New Order 
                                               3.000000 
                                       Worms Armageddon 
                                               3.000000 
                                         Worms Reloaded 
                                               2.000000 
                                      X-COM UFO Defense 
                                               5.000000 
                                     XCOM Enemy Unknown 
                                               3.000000 
                               You Have to Win the Game 
                                               1.000000 
                                             Zeno Clash 
                                               3.000000 
                                    Zombie Panic Source 
                                               2.000000 

$`2`
                                             7 Days to Die 
                                                  2.000000 
                                         A Virus Named TOM 
                                                  3.000000 
              AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome 
                                                  1.000000 
                                      AdVenture Capitalist 
                                                  3.000000 
                                           Age of Chivalry 
                                                  3.000000 
                              Age of Empires II HD Edition 
                                                  3.000000 
                                        Age of Wonders III 
                                                  3.000000 
                                                   AirMech 
                                                  2.500000 
                                           Alien Isolation 
                                                  4.000000 
                                               Alien Swarm 
                                                  2.400000 
                                       Aliens vs. Predator 
                                                  2.500000 
                                            Alpha Protocol 
                                                  4.000000 
                                  Amnesia The Dark Descent 
                                                  4.000000 
                                                 Anno 2070 
                                                  3.000000 
                                               Antichamber 
                                                  3.000000 
                                      ARK Survival Evolved 
                                                  3.000000 
                                                    Arma 2 
                                                  2.000000 
                                Arma 2 Operation Arrowhead 
                                                  4.000000 
                                      Assassin's Creed III 
                                                  3.000000 
                                       Atom Zombie Smasher 
                                                  3.000000 
                                                 Audiosurf 
                                                  2.000000 
                                              Aura Kingdom 
                                                  3.000000 
                            Baldur's Gate Enhanced Edition 
                                                  2.000000 
                                                  Banished 
                                                  3.000000 
                                                   Bastion 
                                                  4.000000 
                                   Batman Arkham City GOTY 
                                                  4.000000 
                                     Batman Arkham Origins 
                                                  4.000000 
                                            Battle Nations 
                                                  1.000000 
                                       BattleBlock Theater 
                                                  4.000000 
                                           Before the Echo 
                                                  3.000000 
                                                  BioShock 
                                                  3.000000 
                                                BioShock 2 
                                                  4.000000 
BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien 
                                                  3.000000 
                                    Blacklight Retribution 
                                                  4.000000 
                                               Borderlands 
                                                  2.000000 
                                Borderlands The Pre-Sequel 
                                                  3.000000 
                                    Call of Duty Black Ops 
                                                  3.000000 
                      Call of Duty Black Ops - Multiplayer 
                                                  2.750000 
                                 Call of Duty Black Ops II 
                                                  2.000000 
                   Call of Duty Black Ops II - Multiplayer 
                                                  2.000000 
                                       Call of Duty Ghosts 
                                                  4.000000 
                         Call of Duty Ghosts - Multiplayer 
                                                  2.000000 
                             Call of Duty Modern Warfare 2 
                                                  2.750000 
               Call of Duty Modern Warfare 2 - Multiplayer 
                                                  3.750000 
                             Call of Duty Modern Warfare 3 
                                                  3.250000 
               Call of Duty Modern Warfare 3 - Multiplayer 
                                                  2.750000 
                                 Call of Duty World at War 
                                                  4.500000 
                                             Canyon Capers 
                                                  4.000000 
                                                  Capsized 
                                                  1.000000 
                                           Castle Crashers 
                                                  3.500000 
                                          Champions Online 
                                                  3.000000 
                                 Chivalry Medieval Warfare 
                                                  2.000000 
                                            Clicker Heroes 
                                                  3.000000 
                                                   Closure 
                                                  3.000000 
                                                      Cogs 
                                                  5.000000 
                                            Counter-Strike 
                                                  2.000000 
                             Counter-Strike Condition Zero 
                                                  2.000000 
                           Counter-Strike Global Offensive 
                                                  2.800000 
                              Counter-Strike Nexon Zombies 
                                                  2.500000 
                                     Crayon Physics Deluxe 
                                                  4.500000 
                                               Creativerse 
                                                  4.000000 
                                         Crusader Kings II 
                                                  3.500000 
                                               Cry of Fear 
                                                  4.000000 
                                                    Crysis 
                                                  2.000000 
                                             DARK SOULS II 
                                                  3.000000 
                                             Day of Defeat 
                                                  2.000000 
                                      Day of Defeat Source 
                                                  1.750000 
                                                      DayZ 
                                                  2.666667 
                                        DC Universe Online 
                                                  2.500000 
                                               Dead Island 
                                                  3.000000 
                                                Dead Realm 
                                                  4.000000 
                                               Dear Esther 
                                                  1.000000 
                                                  Defiance 
                                                  1.000000 
                                                Dino D-Day 
                                                  3.000000 
                                                Dirty Bomb 
                                                  2.000000 
                                                    Dizzel 
                                                  3.000000 
                                              Don't Starve 
                                                  2.000000 
                                                    Dota 2 
                                                  1.500000 
                                    Double Action Boogaloo 
                                                  2.000000 
                                        Dragon Age Origins 
                                                  2.000000 
                                      Driver San Francisco 
                                                  3.000000 
                                        Duke Nukem Forever 
                                                  4.000000 
                                         Dungeon Defenders 
                                                  3.000000 
                                             Dungeon Siege 
                                                  3.000000 
                                       Dungeons of Dredmor 
                                                  4.000000 
                                             Eets Munchies 
                                                  3.000000 
                                          Empire Total War 
                                                  1.000000 
                                            Endless Legend 
                                                  3.000000 
                                               Endless Sky 
                                                  3.000000 
                                                Epigenesis 
                                                  1.000000 
                                     Europa Universalis IV 
                                                  4.000000 
                                        Everlasting Summer 
                                                  2.000000 
                                                   FaceRig 
                                                  4.000000 
                                              Fallen Earth 
                                                  2.000000 
                                                 Fallout 4 
                                                  2.000000 
                                         Fallout New Vegas 
                                                  3.333333 
                                                 Far Cry 2 
                                                  3.000000 
                                                 Far Cry 3 
                                                  4.000000 
                                                 Far Cry 4 
                                                  3.000000 
                                         FINAL FANTASY III 
                                                  3.000000 
                                         FINAL FANTASY VII 
                                                  5.000000 
                                     Football Manager 2013 
                                                  4.000000 
                                     Football Manager 2014 
                                                  3.000000 
                                     Football Manager 2015 
                                                  3.000000 
                                Football Manager 2016 Demo 
                                                  1.000000 
                                             Frozen Hearth 
                                                  5.000000 
                                     FTL Faster Than Light 
                                                  2.000000 
                                               Gang Beasts 
                                                  3.000000 
                                               Garry's Mod 
                                                  2.285714 
                                                      Gish 
                                                  3.000000 
                                             Global Agenda 
                                                  3.000000 
                                            Goat Simulator 
                                                  2.000000 
                                                     Godus 
                                                  3.000000 
               Grand Theft Auto Episodes from Liberty City 
                                                  2.000000 
                                       Grand Theft Auto IV 
                                                  2.500000 
                              Grand Theft Auto San Andreas 
                                                  2.000000 
                                        Grand Theft Auto V 
                                                  3.000000 
                                                      GRID 
                                                  4.000000 
                                                 Grim Dawn 
                                                  4.000000 
                                                  Gunpoint 
                                                  4.000000 
                                          Hacker Evolution 
                                                  4.000000 
                                                 Half-Life 
                                                  2.500000 
                                               Half-Life 2 
                                                  3.000000 
                                    Half-Life 2 Deathmatch 
                                                  2.333333 
                                   Half-Life 2 Episode One 
                                                  2.000000 
                                   Half-Life 2 Episode Two 
                                                  4.000000 
                                    Half-Life 2 Lost Coast 
                                                  2.500000 
                                          Half-Life Source 
                                                  3.000000 
                                                    HAWKEN 
                                                  2.000000 
                                                HELLDIVERS 
                                                  5.000000 
                                         Heroes & Generals 
                                                  2.000000 
                                 Heroes of Might & Magic V 
                                                  3.000000 
                                         Hitman Absolution 
                                                  4.000000 
                                        Hitman Blood Money 
                                                  5.000000 
                                                     HOARD 
                                                  1.000000 
                                                 Homefront 
                                                  2.000000 
                           Homeworld Remastered Collection 
                                                  2.500000 
                                             Hotline Miami 
                                                  4.000000 
                                           Infinite Crisis 
                                                  1.000000 
                                                Insurgency 
                                                  3.000000 
                                                 Jamestown 
                                                  5.000000 
                                    Joe Danger 2 The Movie 
                                                  3.000000 
                                              Just Cause 2 
                                                  3.000000 
                                    KickBeat Steam Edition 
                                                  4.000000 
                                             Killing Floor 
                                                  2.000000 
                                    King Arthur Collection 
                                                  3.000000 
                              Kingdoms of Amalur Reckoning 
                                                  3.000000 
                               Knights of Pen and Paper +1 
                                                  5.000000 
                                                L.A. Noire 
                                                  4.000000 
                                               Left 4 Dead 
                                                  1.333333 
                                             Left 4 Dead 2 
                                                  2.000000 
                                             Lethal League 
                                                  5.000000 
                                            Little Inferno 
                                                  1.000000 
                                                   Loadout 
                                                  1.000000 
                             Lost Planet Extreme Condition 
                                                  3.000000 
                                                Magic 2014 
                                                  3.000000 
                                               Magic Duels 
                                                  2.666667 
     Magic The Gathering - Duels of the Planeswalkers 2013 
                                                  3.000000 
                                                   Magicka 
                                                  2.000000 
                                      Majesty 2 Collection 
                                                  3.000000 
                                         Mark of the Ninja 
                                                  3.000000 
                                             Mass Effect 2 
                                                  3.000000 
                                                   McPixel 
                                                  4.000000 
                                        MechWarrior Online 
                                                  2.000000 
                                            Metro Conflict 
                                                  1.000000 
                                          Metro Last Light 
                                                  3.000000 
                                   Might & Magic Heroes VI 
                                                  2.000000 
                                                    Monaco 
                                                  2.000000 
                                     Mount & Blade Warband 
                                                  2.000000 
                                        Mount Your Friends 
                                                  3.000000 
                                        Napoleon Total War 
                                                  3.000000 
                                                  NBA 2K15 
                                                  3.000000 
                                      Need for Speed SHIFT 
                                                  4.000000 
                                                  NEOTOKYO 
                                                  3.000000 
                                               Neverwinter 
                                                  2.000000 
                             Neverwinter Nights 2 Platinum 
                                                  1.000000 
                                                   Nidhogg 
                                                  3.000000 
                                      No More Room in Hell 
                                                  2.666667 
                                    Oddworld New 'n' Tasty 
                                                  1.000000 
                                                   Outlast 
                                                  4.000000 
                          PAC-MAN Championship Edition DX+ 
                                                  2.000000 
                                            Papers, Please 
                                                  3.000000 
                                             Path of Exile 
                                                  2.666667 
                                                  PAYDAY 2 
                                                  1.500000 
                                          PAYDAY The Heist 
                                                  3.000000 
                                              PlanetSide 2 
                                                  2.000000 
                       Plants vs. Zombies Game of the Year 
                                                  4.000000 
                                             Poker Night 2 
                                                  1.000000 
                                                    Portal 
                                                  3.000000 
                                                  Portal 2 
                                                  2.600000 
                                RaceRoom Racing Experience 
                                                  3.000000 
                                                  Ragnarok 
                                                  3.000000 
                                         Ragnarok Online 2 
                                                  3.000000 
                                      Realm of the Mad God 
                                                  2.500000 
                                     Retro City Rampage DX 
                                                  3.000000 
                                                      Reus 
                                                  3.000000 
                                     Revenge of the Titans 
                                                  3.000000 
                                                      RIFT 
                                                  2.000000 
                          Rise of Nations Extended Edition 
                                                  4.000000 
                  Rising Storm/Red Orchestra 2 Multiplayer 
                                                  1.500000 
                                              Risk of Rain 
                                                  3.000000 
                                                 Robocraft 
                                                  2.500000 
                                             Rocket League 
                                                  4.000000 
                            Rocketbirds Hardboiled Chicken 
                                                  3.000000 
                                                      Rust 
                                                  1.500000 
                                              Saints Row 2 
                                                  2.750000 
                                             Saints Row IV 
                                                  2.500000 
                                      Saints Row The Third 
                                                  4.000000 
                                               Screencheat 
                                                  4.000000 
                                         Serious Sam 3 BFE 
                                                  3.000000 
                  Serious Sam Classic The Second Encounter 
                                                  1.000000 
                        Serious Sam HD The First Encounter 
                                                  3.000000 
                       Serious Sam HD The Second Encounter 
                                                  2.000000 
                                            Shadow Warrior 
                                                  5.000000 
                     Shadowrun Dragonfall - Director's Cut 
                                                  4.000000 
                                         Shadowrun Returns 
                                                  3.500000 
                                                   Shank 2 
                                                  3.000000 
                                Sid Meier's Civilization V 
                                                  3.000000 
                                          Sigils of Elohim 
                                                  3.000000 
                                            Sniper Elite 3 
                                                  2.000000 
                                           Sniper Elite V2 
                                                  2.000000 
                                                   Solar 2 
                                                  3.000000 
                                           Soldier Front 2 
                                                  4.000000 
                                         Sonic Adventure 2 
                                                  5.000000 
                                          Source Filmmaker 
                                                  1.000000 
                                           Space Engineers 
                                                  3.000000 
                                                 Starbound 
                                                  3.500000 
                                             Stranded Deep 
                                                  5.000000 
                                          Strike Suit Zero 
                                                  4.000000 
                                       Stronghold Kingdoms 
                                                  1.000000 
                                            Super Meat Boy 
                                                  2.500000 
                                         Surgeon Simulator 
                                                  3.000000 
                                            System Shock 2 
                                                  1.000000 
                                     Tactical Intervention 
                                                  2.000000 
                                           Team Fortress 2 
                                                  1.705882 
                                                  Terraria 
                                                  3.666667 
                                           The Bard's Tale 
                                                  1.000000 
                                      The Binding of Isaac 
                                                  2.000000 
                              The Binding of Isaac Rebirth 
                                                  5.000000 
                                                The Bridge 
                                                  3.000000 
                                                  The Cave 
                                                  3.000000 
                                                  The Crew 
                                                  2.000000 
                           The Elder Scrolls III Morrowind 
                                                  3.000000 
                                             The Long Dark 
                                                  4.000000 
                            The Mighty Quest For Epic Loot 
                                                  2.000000 
                                       The Stanley Parable 
                                                  3.500000 
                                               The Swapper 
                                                  4.000000 
         The Witcher 2 Assassins of Kings Enhanced Edition 
                                                  2.000000 
                              The Witcher Enhanced Edition 
                                                  3.000000 
                                         They Bleed Pixels 
                                                  3.000000 
                                      Thief Deadly Shadows 
                                                  4.000000 
                                          Thomas Was Alone 
                                                  3.000000 
                                            Ticket to Ride 
                                                  2.000000 
                                             Time Clickers 
                                                  5.000000 
                          Tiny and Big Grandpa's Leftovers 
                                                  5.000000 
                                              Toki Tori 2+ 
                                                  1.000000 
                    Tom Clancy's Ghost Recon Phantoms - NA 
                                                  2.000000 
                                             Torchlight II 
                                                  3.000000 
                                                  Toribash 
                                                  3.000000 
                                          Total War ATTILA 
                                                  5.000000 
                                 Total War Battles KINGDOM 
                                                  3.000000 
                                        Total War SHOGUN 2 
                                                  3.000000 
                                       TowerFall Ascension 
                                                  5.000000 
                                        TrackMania Stadium 
                                                  3.000000 
                                                     Trove 
                                                  3.000000 
                                   Ultra Street Fighter IV 
                                                  3.000000 
                                                 Undertale 
                                                  4.000000 
                                                  Unturned 
                                                  2.200000 
                                               Victoria II 
                                                  3.000000 
                                               War Thunder 
                                                  2.000000 
                                                   Warface 
                                                  3.000000 
                                                  Warframe 
                                                  1.750000 
                                 Wolfenstein The New Order 
                                                  3.000000 
                                          Worms Armageddon 
                                                  3.000000 
                                            Worms Reloaded 
                                                  2.500000 
                                                  WWE 2K15 
                                                  3.000000 
                                         X-COM UFO Defense 
                                                  5.000000 
                                        XCOM Enemy Unknown 
                                                  3.000000 
                                  You Have to Win the Game 
                                                  1.000000 
                                       Zombie Panic Source 
                                                  2.000000 

$`3`
                                 12 Labours of Hercules 
                                               5.000000 
              12 Labours of Hercules II The Cretan Bull 
                                               5.000000 
                                                 3DMark 
                                               3.000000 
                                          7 Days to Die 
                                               2.000000 
                                      99 Levels To Hell 
                                               4.000000 
                                           A Bird Story 
                                               4.000000 
                            A Game of Thrones - Genesis 
                                               3.000000 
                                      A Virus Named TOM 
                                               4.000000 
                                          Ace of Spades 
                                               4.000000 
                    Afterfall InSanity Extended Edition 
                                               4.000000 
                                        Age of Chivalry 
                                               2.000000 
                           Age of Empires II HD Edition 
                                               3.000000 
                 Age of Empires III Complete Collection 
                                               3.000000 
                                  Age of Empires Online 
                                               5.000000 
                                   AI War Fleet Command 
                                               4.000000 
                                          AirBuccaneers 
                                               5.000000 
                                                AirMech 
                                               3.000000 
                                              Alan Wake 
                                               3.000000 
                         Alan Wake's American Nightmare 
                                               4.000000 
                       Alchemy Mysteries Prague Legends 
                                               1.000000 
                                  Alice Madness Returns 
                                               4.000000 
                                            Alien Swarm 
                                               2.714286 
                                    Aliens vs. Predator 
                                               2.000000 
                                         Alpha Protocol 
                                               4.000000 
                              Always Sometimes Monsters 
                                               4.000000 
                                          Amazing World 
                                               4.000000 
                               Amnesia The Dark Descent 
                                               3.000000 
                                Anna - Extended Edition 
                                               4.000000 
                                              Anno 2070 
                                               3.000000 
                                  Anomaly Warzone Earth 
                                               4.000000 
                                            Antichamber 
                                               3.500000 
                                             Archeblade 
                                               3.000000 
                                   ARK Survival Evolved 
                                               2.000000 
                                                 Arma 2 
                                               2.250000 
                                        Arma 2 DayZ Mod 
                                               2.000000 
                             Arma 2 Operation Arrowhead 
                                               3.000000 
                                                 Arma 3 
                                               2.666667 
                                  Arma Cold War Assault 
                                               3.000000 
                                           Arma Tactics 
                                               3.500000 
                                       Assassin's Creed 
                                               4.000000 
                           Assassin's Creed Brotherhood 
                                               4.000000 
                                    Assassin's Creed II 
                                               4.500000 
                                   Assassin's Creed III 
                                               1.500000 
                         Assassin's Creed IV Black Flag 
                                               3.333333 
                           Assassin's Creed Revelations 
                                               4.000000 
                                          Assetto Corsa 
                                               3.000000 
                                           Awesomenauts 
                                               2.500000 
                                               Banished 
                                               2.666667 
                                                Bastion 
                                               3.333333 
                      Batman Arkham Asylum GOTY Edition 
                                               4.000000 
                                Batman Arkham City GOTY 
                                               3.000000 
                                   Batman Arkham Knight 
                                               5.000000 
                                  Batman Arkham Origins 
                                               3.500000 
                              Battlefield Bad Company 2 
                                               2.000000 
                                            Battlepaths 
                                               4.000000 
                        Beatbuddy Tale of the Guardians 
                                               4.000000 
                                                   BEEP 
                                               4.000000 
                                        Before the Echo 
                                               3.000000 
                                                Besiege 
                                               2.000000 
                                               BioShock 
                                               3.000000 
                                             BioShock 2 
                                               4.000000 
                                      BioShock Infinite 
                                               2.666667 
                                        BIT.TRIP RUNNER 
                                               5.000000 
                                            Blackguards 
                                               3.000000 
                                 Blacklight Retribution 
                                               1.000000 
                                         Blades of Time 
                                               1.000000 
                                    Bloodline Champions 
                                               3.000000 
                                        Bloody Trapland 
                                               4.000000 
                                            Borderlands 
                                               3.200000 
                                          Borderlands 2 
                                               3.600000 
                             Borderlands The Pre-Sequel 
                                               3.000000 
                                                Boson X 
                                               3.000000 
                                             Botanicula 
                                               4.000000 
                                             Brawlhalla 
                                               1.000000 
                                               Broforce 
                                               2.500000 
                          Brothers - A Tale of Two Sons 
                                               4.000000 
                                           Brtal Legend 
                                               3.500000 
                                        Bunch Of Heroes 
                                               5.000000 
                      Burnout Paradise The Ultimate Box 
                                               3.333333 
                          Call of Duty Advanced Warfare 
                                               4.000000 
                                 Call of Duty Black Ops 
                                               3.000000 
                   Call of Duty Black Ops - Multiplayer 
                                               2.666667 
                              Call of Duty Black Ops II 
                                               1.000000 
                Call of Duty Black Ops II - Multiplayer 
                                               2.750000 
                    Call of Duty Black Ops II - Zombies 
                                               2.000000 
                             Call of Duty Black Ops III 
                                               3.000000 
                          Call of Duty Modern Warfare 2 
                                               2.500000 
            Call of Duty Modern Warfare 2 - Multiplayer 
                                               3.750000 
                          Call of Duty Modern Warfare 3 
                                               3.333333 
            Call of Duty Modern Warfare 3 - Multiplayer 
                                               2.750000 
                              Call of Duty World at War 
                                               5.000000 
                              Call of Juarez Gunslinger 
                                               3.500000 
                                          Canyon Capers 
                                               4.000000 
                            Car Mechanic Simulator 2014 
                                               1.000000 
                                                 Caster 
                                               4.000000 
                                        Castle Crashers 
                                               3.000000 
                                            Cave Story+ 
                                               3.000000 
                                                   Chip 
                                               5.000000 
                              Chivalry Medieval Warfare 
                                               2.600000 
                                     Cities in Motion 2 
                                               4.000000 
                                        Cities Skylines 
                                               3.000000 
                                     Cities XL Platinum 
                                               5.000000 
                                         Clicker Heroes 
                                               1.000000 
                                          Codename CURE 
                                               1.000000 
                                                   Cogs 
                                               2.000000 
                     Command and Conquer 3 Kane's Wrath 
                                               3.000000 
                    Command and Conquer 3 Tiberium Wars 
                                               4.000000 
                     Commander Conquest of the Americas 
                                               4.000000 
                                      Company of Heroes 
                                               2.000000 
                  Company of Heroes (New Steam Version) 
                                               2.000000 
                                    Company of Heroes 2 
                                               3.000000 
                       Company of Heroes Tales of Valor 
                                               2.000000 
                                         Cortex Command 
                                               5.000000 
                                          Costume Quest 
                                               4.500000 
                          Counter-Strike Condition Zero 
                                               1.833333 
           Counter-Strike Condition Zero Deleted Scenes 
                                               2.500000 
                        Counter-Strike Global Offensive 
                                               3.062500 
                           Counter-Strike Nexon Zombies 
                                               3.000000 
                                  Counter-Strike Source 
                                               2.000000 
                                      Crusader Kings II 
                                               2.500000 
                                            Cry of Fear 
                                               3.000000 
                                                 Crysis 
                                               1.000000 
                               Crysis 2 Maximum Edition 
                                               2.000000 
                                            Crysis Wars 
                                               1.000000 
                                Cthulhu Saves the World 
                                               4.000000 
                      Dark Souls Prepare to Die Edition 
                                               1.500000 
                                             Darksiders 
                                               3.000000 
                                               Darwinia 
                                               3.000000 
                                          Day of Defeat 
                                               1.500000 
                                   Day of Defeat Source 
                                               1.500000 
                                                   DayZ 
                                               2.428571 
                                              DCS World 
                                               3.000000 
                                              Dead Bits 
                                               5.000000 
                                            Dead Island 
                                               3.666667 
                                              Deadbreed 
                                               4.000000 
                                              Deadlight 
                                               3.000000 
                                            Dear Esther 
                                               3.000000 
                             Defense Grid The Awakening 
                                               4.000000 
                                           Defy Gravity 
                                               4.000000 
                                                Deponia 
                                               3.000000 
                               Deus Ex Human Revolution 
                                               2.000000 
              Deus Ex Human Revolution - Director's Cut 
                                               3.000000 
                                             Dino D-Day 
                                               3.000000 
                                                 DiRT 2 
                                               1.000000 
                                                 DiRT 3 
                                               2.500000 
                                DiRT 3 Complete Edition 
                                               4.000000 
                                             Dirty Bomb 
                                               2.000000 
                                             Dishonored 
                                               2.500000 
                                        Dishonored (RU) 
                                               2.000000 
                                  Divinity Original Sin 
                                               5.000000 
                 Divinity Original Sin Enhanced Edition 
                                               3.000000 
                                              DLC Quest 
                                               3.000000 
                                      DmC Devil May Cry 
                                               3.500000 
                                           Don't Starve 
                                               2.250000 
                             Don't Starve Together Beta 
                                               3.000000 
                                  DOOM II Hell on Earth 
                                               1.000000 
                                           Door Kickers 
                                               5.000000 
                                                 Dota 2 
                                               1.888889 
                                     Double Dragon Neon 
                                               4.000000 
                                     Dragon Age Origins 
                                               4.000000 
                  Dragon Age Origins - Ultimate Edition 
                                               2.000000 
                                   Draw a Stickman EPIC 
                                               4.000000 
                                               Droplitz 
                                               4.000000 
                          Duke Nukem 3D Megaton Edition 
                                               4.000000 
                                     Duke Nukem Forever 
                                               3.000000 
                                      Dungeon Defenders 
                                               5.000000 
                             Dungeon Defenders Eternity 
                                               3.000000 
                                    Dungeons of Dredmor 
                                               4.000000 
                                   Dust An Elysian Tail 
                                               3.000000 
                                              Dustforce 
                                               4.000000 
                                               Dwarfs!? 
                                               4.000000 
                                E.Y.E Divine Cybermancy 
                                               5.000000 
                                          Eets Munchies 
                                               3.000000 
                                       Empire Total War 
                                               2.666667 
                                                Enclave 
                                               4.000000 
                                         Endless Legend 
                                               4.000000 
                                            Endless Sky 
                                               4.000000 
                                          Endless Space 
                                               3.000000 
                                   Euro Truck Simulator 
                                               3.000000 
                                 Euro Truck Simulator 2 
                                               2.333333 
                                 Europa Universalis III 
                                               2.000000 
                                  Europa Universalis IV 
                                               1.000000 
                                     Everlasting Summer 
                                               2.000000 
                                            Evil Genius 
                                               4.000000 
                                               F.E.A.R. 
                                               2.000000 
                                                F1 2013 
                                               1.000000 
                                              Fable III 
                                               4.000000 
                                                FaceRig 
                                               3.000000 
                                    Fairy Bloom Freesia 
                                               1.000000 
                    Fallen Enchantress Legendary Heroes 
                                               4.000000 
                                              Fallout 3 
                                               2.750000 
                   Fallout 3 - Game of the Year Edition 
                                               3.000000 
                                              Fallout 4 
                                               3.000000 
                                      Fallout New Vegas 
                                               2.250000 
                                              Far Cry 2 
                                               4.000000 
                                              Far Cry 3 
                                               3.000000 
                                 Far Cry 3 Blood Dragon 
                                               2.000000 
                                   Farming Simulator 15 
                                               4.000000 
                                                    FEZ 
                                               3.000000 
                                             Final DOOM 
                                               1.000000 
                                      FINAL FANTASY III 
                                               3.000000 
                                         Floating Point 
                                               5.000000 
                                  Football Manager 2013 
                                               4.000000 
                                  Football Manager 2014 
                                               3.000000 
                                  Football Manager 2015 
                                               3.000000 
                             Football Manager 2016 Demo 
                                               1.000000 
                                        Fractured Space 
                                               1.000000 
                           Frankenstein Master of Death 
                                               5.000000 
                                         Freedom Planet 
                                               5.000000 
                                              From Dust 
                                               2.500000 
                                          Frozen Hearth 
                                               5.000000 
                                         Frozen Synapse 
                                               3.000000 
                                  FTL Faster Than Light 
                                               2.666667 
                                      Full Mojo Rampage 
                                               3.000000 
                                        Game Dev Tycoon 
                                               4.000000 
                                       GameMaker Studio 
                                               2.000000 
                                            Garry's Mod 
                                               2.428571 
                                   Gas Guzzlers Extreme 
                                               3.000000 
                            Ghostbusters The Video Game 
                                               1.000000 
                           Giana Sisters Twisted Dreams 
                                               3.000000 
                                          Global Agenda 
                                               3.000000 
                                                  Godus 
                                               3.000000 
                                            GooCubelets 
                                               5.000000 
            Grand Theft Auto Episodes from Liberty City 
                                               3.000000 
                                    Grand Theft Auto IV 
                                               2.800000 
                                     Grand Theft Auto V 
                                               2.800000 
                               Gratuitous Space Battles 
                                               3.000000 
                                               Gravilon 
                                               5.000000 
                                                   GRID 
                                               2.000000 
                                                 GRID 2 
                                               3.000000 
                                              Grim Dawn 
                                               4.000000 
                                                  Grimm 
                                               4.000000 
                               Guacamelee! Gold Edition 
                                               2.500000 
                              Guardians of Middle-earth 
                                               3.500000 
                                            Gun Monkeys 
                                               3.500000 
                                               Gunpoint 
                                               3.500000 
                                  Guns of Icarus Online 
                                               3.000000 
                                 GunZ 2 The Second Duel 
                                               2.000000 
                                                   H1Z1 
                                               5.000000 
                                       Hacker Evolution 
                                               4.000000 
                              Hacker Evolution - Untold 
                                               5.000000 
                                              Half-Life 
                                               3.000000 
                                            Half-Life 2 
                                               2.800000 
                                 Half-Life 2 Deathmatch 
                                               2.000000 
                                Half-Life 2 Episode One 
                                               2.333333 
                                Half-Life 2 Episode Two 
                                               4.000000 
                                 Half-Life 2 Lost Coast 
                                               2.600000 
                                   Half-Life Blue Shift 
                                               3.666667 
                            Half-Life Deathmatch Source 
                                               4.000000 
                               Half-Life Opposing Force 
                                               3.500000 
                                       Half-Life Source 
                                               2.000000 
                                            Hammerwatch 
                                               2.333333 
                                                 Hatred 
                                               3.000000 
                                       Haunted Memories 
                                               4.000000 
                                             Hazard Ops 
                                               3.000000 
                                     Hearts of Iron III 
                                               2.000000 
                                      Heroes & Generals 
                                               1.750000 
                                      Hitman Absolution 
                                               4.000000 
                                     Hitman Blood Money 
                                               3.000000 
                                Hitman Sniper Challenge 
                                               2.000000 
                                                  HOARD 
                                               4.000000 
                                              Homefront 
                                               2.666667 
                                          Hotline Miami 
                                               3.200000 
                                         How to Survive 
                                               3.500000 
                                    IL-2 Sturmovik 1946 
                                               3.000000 
                                        Infinite Crisis 
                                               1.000000 
               Injustice Gods Among Us Ultimate Edition 
                                               3.333333 
                                             Insurgency 
                                               2.333333 
                                        Invisible, Inc. 
                                               5.000000 
                                    Ionball 2  Ionstorm 
                                               5.000000 
                                              Jamestown 
                                               4.333333 
                                               Jazzpunk 
                                               5.000000 
                                             Jet Gunner 
                                               4.000000 
                                           Just Cause 2 
                                               2.000000 
                                   Kerbal Space Program 
                                               3.333333 
                                 KickBeat Steam Edition 
                                               3.000000 
                                          Killing Floor 
                                               2.666667 
                                        Killing Floor 2 
                                               3.000000 
              King Arthur II - The Role-playing Wargame 
                                               1.500000 
                                  Knights and Merchants 
                                               3.000000 
                            Knights of Pen and Paper +1 
                                               5.000000 
                                                La Tale 
                                               4.000000 
                                            Left 4 Dead 
                                               2.333333 
                                          Left 4 Dead 2 
                                               2.500000 
                                     Legend of Grimrock 
                                               2.000000 
                                            LEGO Worlds 
                                               3.000000 
                                          Lethal League 
                                               5.000000 
                                     Lichdom Battlemage 
                                               5.000000 
                                                  LIMBO 
                                               4.333333 
                                   Little Racers STREET 
                                               4.000000 
                                                Loadout 
                                               2.000000 
                       Lone Survivor The Director's Cut 
                                               1.000000 
                                          Lost Planet 2 
                                               3.000000 
                                          Lost Planet 3 
                                               4.000000 
                          Lost Planet Extreme Condition 
                                               4.000000 
                                                 Lucius 
                                               3.000000 
                                           Lunar Flight 
                                               4.000000 
                                            Machinarium 
                                               3.000000 
                            Madballs in...Babo Invasion 
                                               3.000000 
                                               Mafia II 
                                               3.500000 
                                             Magic 2014 
                                               2.000000 
                                                Magicka 
                                               3.333333 
                                    Magicka Wizard Wars 
                                               3.000000 
                                    March of the Eagles 
                                               1.000000 
                                      Mark of the Ninja 
                                               4.000000 
                                            Mass Effect 
                                               2.000000 
                                            Max Payne 3 
                                               2.000000 
                                                McPixel 
                                               5.000000 
                         Medal of Honor(TM) Multiplayer 
                                               1.000000 
                                     Medieval Engineers 
                                               3.000000 
                                  Medieval II Total War 
                                               1.500000 
                         Medieval II Total War Kingdoms 
                                               1.000000 
                                        Mercenary Kings 
                                               4.500000 
                          METAL GEAR RISING REVENGEANCE 
                                               4.500000 
                       METAL GEAR SOLID V GROUND ZEROES 
                                               4.000000 
                                           METAL SLUG 3 
                                               4.500000 
                                             Metro 2033 
                                               2.500000 
                                       Metro 2033 Redux 
                                               3.000000 
                                         Metro Conflict 
                                               1.000000 
                                       Metro Last Light 
                                               2.500000 
                                 Metro Last Light Redux 
                                               2.000000 
                                               Miasmata 
                                               5.000000 
                                Might & Magic Heroes VI 
                                               4.000000 
                                          Mirror's Edge 
                                               2.500000 
                                                 Monaco 
                                               4.500000 
                               Mortal Kombat Kollection 
                                               1.000000 
                         Mortal Kombat Komplete Edition 
                                               2.000000 
                                  Mount & Blade Warband 
                                               2.000000 
                                  MURDERED SOUL SUSPECT 
                                               3.000000 
                                     Napoleon Total War 
                                               3.000000 
     NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst 
                                               4.000000 
                                             Nation Red 
                                               3.000000 
                                    Natural Selection 2 
                                               1.750000 
                                                 Nether 
                                               3.000000 
                          Neverwinter Nights 2 Platinum 
                                               2.000000 
                                Next Car Game Wreckfest 
                                               2.000000 
                                   No More Room in Hell 
                                               2.500000 
                         Nosferatu The Wrath of Malachi 
                                               4.000000 
                                                Nosgoth 
                                               4.000000 
                                           Nuclear Dawn 
                                               3.000000 
                                 Oddworld Abe's Oddysee 
                                               5.000000 
                                 Oddworld New 'n' Tasty 
                                               5.000000 
                     Operation Flashpoint Dragon Rising 
                                               3.000000 
                         Operation Flashpoint Red River 
                                               1.000000 
                                         Orcs Must Die! 
                                               3.000000 
                                       Orcs Must Die! 2 
                                               3.250000 
                                          ORION Prelude 
                                               2.500000 
                                    Out There Somewhere 
                                               3.000000 
                                                Outlast 
                                               3.000000 
                     Overcast - Walden and the Werewolf 
                                               5.000000 
                                             Overgrowth 
                                               5.000000 
                                            Overlord II 
                                               4.000000 
                            Painkiller Hell & Damnation 
                                               5.000000 
                                         Papers, Please 
                                               4.000000 
                                              Particula 
                                               4.000000 
                                          Path of Exile 
                                               2.333333 
                                               PAYDAY 2 
                                               1.750000 
                                       PAYDAY The Heist 
                                               3.333333 
                         Phantom Breaker Battle Grounds 
                                               5.000000 
                                    Pillars of Eternity 
                                               2.000000 
                                           Pixel Piracy 
                                               3.000000 
                                            Plain Sight 
                                               5.000000 
                                 Planetary Annihilation 
                                               3.000000 
                                           PlanetSide 2 
                                               2.333333 
                                          Poker Night 2 
                                               4.000000 
                                               Polarity 
                                               4.000000 
                                            Pool Nation 
                                               4.000000 
                                          Port Royale 3 
                                               4.000000 
                                                 Portal 
                                               3.000000 
                                               Portal 2 
                                               2.900000 
                                               POSTAL 2 
                                               3.000000 
                                  Prime World Defenders 
                                               5.000000 
                                       Prison Architect 
                                               3.000000 
                                           Project CARS 
                                               4.000000 
                                        Project Zomboid 
                                               3.000000 
                                                Proteus 
                                               1.000000 
                                            Psychonauts 
                                               3.333333 
                                                  Quake 
                                               4.000000 
                                             Quake Live 
                                               3.000000 
                                                R.U.S.E 
                                               4.000000 
                                                RACE 07 
                                               4.000000 
                                                Racer 8 
                                               5.000000 
                           RADical ROACH Deluxe Edition 
                                               4.000000 
                                                   RAGE 
                                               3.000000 
                                         Rayman Legends 
                                               3.000000 
                                   Realm of the Mad God 
                                               2.000000 
                                            Red Faction 
                                               1.000000 
                                 Red Faction Armageddon 
                                               1.000000 
                    Red Faction Guerrilla Steam Edition 
                                               4.000000 
                                     Relic Hunters Zero 
                                               5.000000 
                                            Remember Me 
                                               4.000000 
                          resident evil 4 / biohazard 4 
                                               4.000000 
                          Resident Evil 5 / Biohazard 5 
                                               4.000000 
                          Resident Evil 6 / Biohazard 6 
                                               4.000000 
      Resident Evil Revelations / Biohazard Revelations 
                                               4.000000 
  Resident Evil Revelations 2 / Biohazard Revelations 2 
                                               3.000000 
                                         Revolution Ace 
                                               5.000000 
                       Rise of Nations Extended Edition 
                                               3.500000 
                                      Rise of the Triad 
                                               4.000000 
                                         Rise of Venice 
                                               3.000000 
                                                  Risen 
                                               4.000000 
                                  Risen 2 - Dark Waters 
                                               3.000000 
               Rising Storm/Red Orchestra 2 Multiplayer 
                                               2.000000 
                                           Risk of Rain 
                                               3.000000 
                                              Robocraft 
                                               1.500000 
                     Robot Roller-Derby Disco Dodgeball 
                                               5.000000 
                                                Rochard 
                                               5.000000 
                                           Rock of Ages 
                                               1.000000 
                                          Rocket League 
                                               3.500000 
                                         Rome Total War 
                                               2.500000 
                             Rome Total War - Alexander 
                                               2.000000 
                                       RPG Maker VX Ace 
                                               2.000000 
                                                   Rust 
                                               2.500000 
                                       Ryse Son of Rome 
                                               3.000000 
                               S.T.A.L.K.E.R. Clear Sky 
                                               1.000000 
                     S.T.A.L.K.E.R. Shadow of Chernobyl 
                                               4.000000 
                                         Sacred Citadel 
                                               5.000000 
                                           Saints Row 2 
                                               2.000000 
                                          Saints Row IV 
                                               3.000000 
                                   Saints Row The Third 
                                               2.600000 
                                         Sakura Clicker 
                                               2.000000 
                                                Sanctum 
                                               2.500000 
                                              Sanctum 2 
                                               3.000000 
                                            Screencheat 
                                               5.000000 
                                Scribblenauts Unlimited 
                                               3.000000 
                                      Serious Sam 3 BFE 
                                               3.000000 
                    Serious Sam HD The Second Encounter 
                                               5.000000 
                                         Shadow Warrior 
                                               4.000000 
                           Shadow Warrior Classic Redux 
                                               4.000000 
                                          Shadowgrounds 
                                               4.000000 
                                 Shadowgrounds Survivor 
                                               4.000000 
                                      Shadowrun Returns 
                                               3.000000 
                                                Shank 2 
                                               4.000000 
                                                Shelter 
                                               1.000000 
                                 Sid Meier's Ace Patrol 
                                               4.000000 
                   Sid Meier's Ace Patrol Pacific Skies 
                                               5.000000 
                            Sid Meier's Civilization IV 
                                               3.000000 
               Sid Meier's Civilization IV Colonization 
                                               2.000000 
                   Sid Meier's Civilization IV Warlords 
                                               4.000000 
                             Sid Meier's Civilization V 
                                               2.857143 
                                              Sine Mora 
                                               4.000000 
                                          Sinister City 
                                               5.000000 
                       Sins of a Solar Empire Rebellion 
                                               2.500000 
                                             Skullgirls 
                                               3.000000 
                                                Skyborn 
                                               5.000000 
                                          Sleeping Dogs 
                                               3.000000 
                                         Sniper Elite 3 
                                               2.000000 
                                        Sniper Elite V2 
                                               3.000000 
                                          Snuggle Truck 
                                               5.000000 
                   Sonic & All-Stars Racing Transformed 
                                               2.500000 
                                       Source Filmmaker 
                                               2.000000 
                                        Space Engineers 
                                               2.666667 
                              Space Pirates and Zombies 
                                               2.500000 
                                              SpaceChem 
                                               3.000000 
                                          Sparkle 2 Evo 
                                               4.000000 
                                      Spec Ops The Line 
                                               4.000000 
                                           SpeedRunners 
                                               3.000000 
                                               Spelunky 
                                               2.500000 
                               Squishy the Suicidal Pig 
                                               5.000000 
                                               Stacking 
                                               4.000000 
                                          Star Conflict 
                                               3.000000 
                                  Star Wars Dark Forces 
                                               3.000000 
                           Star Wars Empire at War Gold 
                                               3.000000 
                   Star Wars Jedi Knight Dark Forces II 
                                               3.000000 
                     Star Wars Jedi Knight Jedi Academy 
                                               1.000000 
                            Star Wars Republic Commando 
                                               4.000000 
                                              StarDrive 
                                               3.000000 
                                         State of Decay 
                                               3.000000 
                                 Stealth Bastard Deluxe 
                                               4.000000 
                                         SteamWorld Dig 
                                               3.000000 
                                 STORM Frontline Nation 
                                               2.000000 
                                      Street Fighter IV 
                                               4.000000 
                                                Strider 
                                               5.000000 
                                    Stronghold Kingdoms 
                                               4.000000 
                              Sunrider Mask of Arcadius 
                                               1.000000 
                                        Super Crate Box 
                                               4.500000 
                       Super Killer Hornet Resurrection 
                                               4.000000 
                                         Super Meat Boy 
                                               3.000000 
                      Superbrothers Sword & Sworcery EP 
                                               4.000000 
                                      Supreme Commander 
                                               4.000000 
                                    Supreme Commander 2 
                                               3.500000 
                      Supreme Commander Forged Alliance 
                                               2.333333 
                                              Survarium 
                                               3.000000 
                                                Synergy 
                                               4.500000 
                                         System Shock 2 
                                               3.000000 
                               Talisman Digital Edition 
                                               3.000000 
                                      Talisman Prologue 
                                               4.000000 
                                        Team Fortress 2 
                                               2.266667 
                            Teleglitch Die More Edition 
                                               4.000000 
                                               Terraria 
                                               2.714286 
                                        The Bard's Tale 
                                               4.000000 
                                   The Binding of Isaac 
                                               2.000000 
                           The Binding of Isaac Rebirth 
                                               5.000000 
                           The Bureau XCOM Declassified 
                                               4.500000 
                                The Culling Of The Cows 
                                               5.000000 
                                        The Darkness II 
                                               3.000000 
                             The Elder Scrolls V Skyrim 
                                               2.666667 
                                             The Forest 
                                               3.000000 
                                The Hat Man Shadow Ward 
                                               5.000000 
               The Incredible Adventures of Van Helsing 
                                               4.000000 
            The Incredible Adventures of Van Helsing II 
                                               5.000000 
                           The Journey Down Chapter One 
                                               4.000000 
                THE KING OF FIGHTERS XIII STEAM EDITION 
                                               4.000000 
                                          The Long Dark 
                                               3.500000 
                 The Lord of the Rings War in the North 
                                               3.333333 
                                                The Maw 
                                               5.000000 
                         The Mighty Quest For Epic Loot 
                                               1.000000 
            The Secret of Monkey Island Special Edition 
                                               3.500000 
                                               The Ship 
                                               3.000000 
                                         The Sims(TM) 3 
                                               2.000000 
                                    The Stanley Parable 
                                               3.000000 
                                            The Swapper 
                                               3.500000 
                                      The Ultimate DOOM 
                                               5.000000 
                                       The Walking Dead 
                                               3.000000 
                            The Walking Dead Season Two 
                                               3.000000 
      The Witcher 2 Assassins of Kings Enhanced Edition 
                                               3.000000 
                                      They Bleed Pixels 
                                               3.000000 
                                                  Thief 
                                               3.000000 
                                   Thief Deadly Shadows 
                                               4.000000 
                             Thinking with Time Machine 
                                               4.000000 
                                       Thomas Was Alone 
                                               3.000000 
                       Tiny and Big Grandpa's Leftovers 
                                               3.000000 
                                            Titan Quest 
                                               2.000000 
                            Titan Quest Immortal Throne 
                                               5.000000 
                                            To the Moon 
                                               3.000000 
                Tom Clancy's Ghost Recon Future Soldier 
                                               4.000000 
                 Tom Clancy's Ghost Recon Phantoms - EU 
                                               1.000000 
                 Tom Clancy's Ghost Recon Phantoms - NA 
                                               2.000000 
                   Tom Clancy's Splinter Cell Blacklist 
                                               4.000000 
                  Tom Clancy's Splinter Cell Conviction 
                                               3.000000 
                                            Tomb Raider 
                                               3.333333 
                                Tomb Raider Anniversary 
                                               3.000000 
                                             Torchlight 
                                               3.000000 
                                          Torchlight II 
                                               2.800000 
                                               Toribash 
                                               3.000000 
                                       Total War ATTILA 
                                               5.000000 
                              Total War Battles KINGDOM 
                                               3.000000 
                    Total War ROME II - Emperor Edition 
                                               4.000000 
                                     Total War SHOGUN 2 
                                               3.000000 
                                             Tower Wars 
                                               3.000000 
                                    TowerFall Ascension 
                                               5.000000 
                                           Toy Soldiers 
                                               2.000000 
                                     TrackMania Stadium 
                                               3.000000 
                                            Train Fever 
                                               5.000000 
                                Trials 2 Second Edition 
                                               1.000000 
                                                  Trine 
                                               4.000000 
                                                Trine 2 
                                               4.000000 
                      Tropico 3 - Steam Special Edition 
                                               2.000000 
                                              Tropico 4 
                                               2.666667 
                                              Tropico 5 
                                               5.000000 
                                                  Trove 
                                               2.500000 
                                Two Worlds Epic Edition 
                                               3.000000 
                                Ultra Street Fighter IV 
                                               3.000000 
                                              Uncrowded 
                                               5.000000 
                                       Universe Sandbox 
                                               3.000000 
             Unreal Tournament Game of the Year Edition 
                                               3.000000 
                                               Unturned 
                                               2.166667 
                                                 Uplink 
                                               2.000000 
                                  Urban Trial Freestyle 
                                               5.000000 
                                          Uriel's Chasm 
                                               4.000000 
                                    Valkyria Chronicles 
                                               3.000000 
                                            Victoria II 
                                               4.000000 
                               Viking Battle for Asgard 
                                               5.000000 
                                                 VVVVVV 
                                               4.000000 
                                            Waking Mars 
                                               1.000000 
                                       War of the Roses 
                                               2.000000 
                                            War Thunder 
                                               2.166667 
                                                Warface 
                                               3.000000 
                                               Warframe 
                                               2.000000 
                                 Wargame AirLand Battle 
                                               2.000000 
                            Wargame European Escalation 
                                               2.000000 
                                     Wargame Red Dragon 
                                               2.000000 
Warhammer 40,000 Dawn of War - Game of the Year Edition 
                                               4.000000 
                Warhammer 40,000 Dawn of War  Soulstorm 
                                               5.000000 
           Warhammer 40,000 Dawn of War  Winter Assault 
                                               1.000000 
                        Warhammer 40,000 Dawn of War II 
                                               3.500000 
         Warhammer 40,000 Dawn of War II - Chaos Rising 
                                               4.000000 
           Warhammer 40,000 Dawn of War II  Retribution 
                                               2.333333 
                          Warhammer 40,000 Space Marine 
                                               4.000000 
                       Warhammer End Times - Vermintide 
                                               5.000000 
                         Warlock - Master of the Arcane 
                                               4.000000 
                                   Warlock 2 the Exiled 
                                               3.000000 
                                               Waveform 
                                               3.000000 
                                                 Wizorb 
                                               5.000000 
                              Wolfenstein The New Order 
                                               4.000000 
                              Wolfenstein The Old Blood 
                                               4.000000 
                                 Woodle Tree Adventures 
                                               5.000000 
                                 World of Soccer online 
                                               4.000000 
                                       Worms Armageddon 
                                               3.000000 
                                       Worms Revolution 
                                               3.250000 
                                      X-COM UFO Defense 
                                               3.000000 
                                     XCOM Enemy Unknown 
                                               3.666667 
                                              Xenonauts 
                                               2.000000 
                             Yet Another Zombie Defense 
                                               3.000000 
                                             Zeno Clash 
                                               4.000000 
                                    Zombie Panic Source 
                                               2.000000 

$`4`
                                             7 Days to Die 
                                                  2.333333 
                                         A Virus Named TOM 
                                                  3.000000 
              AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome 
                                                  1.000000 
                                      AdVenture Capitalist 
                                                  3.000000 
                       Afterfall InSanity Extended Edition 
                                                  4.000000 
                                           Age of Chivalry 
                                                  2.000000 
                              Age of Empires II HD Edition 
                                                  3.000000 
                    Age of Empires III Complete Collection 
                                                  2.000000 
                                        Age of Wonders III 
                                                  3.000000 
                                          Airline Tycoon 2 
                                                  5.000000 
                                                 Alan Wake 
                                                  2.000000 
                                               Alien Swarm 
                                                  3.000000 
                                       Aliens vs. Predator 
                                                  3.000000 
                                  Amnesia The Dark Descent 
                                                  4.000000 
                                                 Anno 1404 
                                                  3.000000 
                                               Antichamber 
                                                  3.000000 
                                      ARK Survival Evolved 
                                                  1.000000 
                                                    Arma 2 
                                                  3.000000 
                                           Arma 2 DayZ Mod 
                                                  2.333333 
                                Arma 2 Operation Arrowhead 
                                                  3.400000 
                                                    Arma 3 
                                                  2.666667 
                                     Arma Cold War Assault 
                                                  3.000000 
                                              Arma Tactics 
                                                  3.000000 
                              Assassin's Creed Brotherhood 
                                                  3.000000 
                                       Assassin's Creed II 
                                                  4.000000 
                                      Assassin's Creed III 
                                                  2.000000 
                            Assassin's Creed IV Black Flag 
                                                  3.333333 
                                       Atom Zombie Smasher 
                                                  3.000000 
                                                 Audiosurf 
                                                  2.000000 
                                              Aura Kingdom 
                                                  3.000000 
                            Baldur's Gate Enhanced Edition 
                                                  2.000000 
                                                  Banished 
                                                  2.500000 
                                                   Bastion 
                                                  3.666667 
                         Batman Arkham Asylum GOTY Edition 
                                                  2.000000 
                                   Batman Arkham City GOTY 
                                                  3.000000 
                                     Batman Arkham Origins 
                                                  3.000000 
                                       BattleBlock Theater 
                                                  5.000000 
                                             Battlefield 2 
                                                  3.000000 
                                           Before the Echo 
                                                  3.000000 
                                                   Besiege 
                                                  2.666667 
                                                  BioShock 
                                                  3.000000 
                                         BioShock Infinite 
                                                  2.333333 
BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien 
                                                  3.000000 
                                               Borderlands 
                                                  2.000000 
                                             Borderlands 2 
                                                  2.714286 
                                                Botanicula 
                                                  4.000000 
                                        Bridge Constructor 
                                                  5.000000 
                             Brothers - A Tale of Two Sons 
                                                  3.000000 
                         Burnout Paradise The Ultimate Box 
                                                  3.000000 
                             Call of Duty Advanced Warfare 
                                                  2.000000 
               Call of Duty Advanced Warfare - Multiplayer 
                                                  3.000000 
                                    Call of Duty Black Ops 
                                                  3.000000 
                      Call of Duty Black Ops - Multiplayer 
                                                  3.000000 
                                 Call of Duty Black Ops II 
                                                  1.500000 
                   Call of Duty Black Ops II - Multiplayer 
                                                  2.000000 
                       Call of Duty Black Ops II - Zombies 
                                                  2.000000 
                             Call of Duty Modern Warfare 2 
                                                  2.666667 
               Call of Duty Modern Warfare 2 - Multiplayer 
                                                  3.666667 
                             Call of Duty Modern Warfare 3 
                                                  3.500000 
               Call of Duty Modern Warfare 3 - Multiplayer 
                                                  3.000000 
                                 Call of Juarez Gunslinger 
                                                  4.000000 
                                                  Capsized 
                                                  1.000000 
                               Car Mechanic Simulator 2014 
                                                  5.000000 
                                           Castle Crashers 
                                                  3.500000 
                                          Champions Online 
                                                  3.000000 
                                 Chivalry Medieval Warfare 
                                                  2.250000 
                                           Cities Skylines 
                                                  3.000000 
                                            Clicker Heroes 
                                                  2.000000 
                                                   Closure 
                                                  3.000000 
                                           Codename Gordon 
                                                  5.000000 
                                                      Cogs 
                                                  5.000000 
                           Command and Conquer Red Alert 3 
                                                  3.000000 
                                         Company of Heroes 
                                                  3.000000 
                     Company of Heroes (New Steam Version) 
                                                  3.000000 
                                       Company of Heroes 2 
                                                  3.000000 
                                            Counter-Strike 
                                                  1.800000 
                             Counter-Strike Condition Zero 
                                                  1.666667 
                           Counter-Strike Global Offensive 
                                                  3.000000 
                              Counter-Strike Nexon Zombies 
                                                  1.000000 
                                     Counter-Strike Source 
                                                  2.333333 
                                             Crash Time II 
                                                  2.000000 
                                     Crayon Physics Deluxe 
                                                  4.500000 
                                         Crusader Kings II 
                                                  3.750000 
                                               Cry of Fear 
                                                  3.500000 
                                  Crypt of the NecroDancer 
                                                  4.000000 
                                             DARK SOULS II 
                                                  3.500000 
                    DARK SOULS II Scholar of the First Sin 
                                                  3.000000 
                         Dark Souls Prepare to Die Edition 
                                                  2.000000 
                                             Day of Defeat 
                                                  2.000000 
                                      Day of Defeat Source 
                                                  2.000000 
                                                      DayZ 
                                                  2.500000 
                                        DC Universe Online 
                                                  2.000000 
                                               Dead Island 
                                                  3.666667 
                                      Dead Island Epidemic 
                                                  3.000000 
                                       Dead Island Riptide 
                                                  3.000000 
                                             Dead Rising 3 
                                                  3.000000 
                                                 Deadbreed 
                                                  4.000000 
                                               Dear Esther 
                                                  2.000000 
                                               Democracy 3 
                                                  5.000000 
                                                     Depth 
                                                  4.000000 
                                                Dino D-Day 
                                                  2.000000 
                                           Dishonored (RU) 
                                                  2.000000 
                                     Divinity Original Sin 
                                                  3.000000 
                                              Don't Starve 
                                                  2.000000 
                                Don't Starve Together Beta 
                                                  3.000000 
                                              Door Kickers 
                                                  5.000000 
                                                    Dota 2 
                                                  1.600000 
                                        Dragon Age Origins 
                                                  2.000000 
                     Dragon Age Origins - Ultimate Edition 
                                                  3.500000 
                             Duke Nukem 3D Megaton Edition 
                                                  3.000000 
                                         Dungeon Defenders 
                                                  5.000000 
                                             Dungeon Siege 
                                                  3.000000 
                                       Dungeons of Dredmor 
                                                  4.000000 
                                                  Dwarfs!? 
                                                  4.000000 
                                                Earth 2160 
                                                  3.000000 
                                             Eets Munchies 
                                                  3.000000 
                                          Empire Total War 
                                                  3.000000 
                                            Endless Legend 
                                                  3.000000 
                                             Endless Space 
                                                  4.000000 
                                                Epigenesis 
                                                  1.000000 
                                      Euro Truck Simulator 
                                                  3.000000 
                                    Euro Truck Simulator 2 
                                                  2.333333 
                                     Europa Universalis IV 
                                                  2.800000 
                                        EVGA PrecisionX 16 
                                                  1.000000 
                                 Fable - The Lost Chapters 
                                                  3.000000 
                                                 Fable III 
                                                  4.000000 
                                                   FaceRig 
                                                  3.500000 
                                              Fallen Earth 
                                                  2.000000 
                      Fallout 3 - Game of the Year Edition 
                                                  3.000000 
                                                 Fallout 4 
                                                  2.600000 
                                         Fallout New Vegas 
                                                  3.333333 
                                                 Far Cry 2 
                                                  3.000000 
                                                 Far Cry 3 
                                                  3.333333 
                                    Far Cry 3 Blood Dragon 
                                                  1.000000 
                                                 Far Cry 4 
                                                  4.000000 
                                      Farming Simulator 15 
                                                  4.000000 
                                    Farming Simulator 2013 
                                                  2.000000 
                                         FINAL FANTASY III 
                                                  3.000000 
                                  FlatOut Ultimate Carnage 
                                                  4.000000 
                                            Floating Point 
                                                  5.000000 
                                     Football Manager 2009 
                                                  4.000000 
                                     Football Manager 2010 
                                                  4.000000 
                                     Football Manager 2011 
                                                  4.000000 
                                     Football Manager 2012 
                                                  4.000000 
                                     Football Manager 2013 
                                                  3.666667 
                                     Football Manager 2014 
                                                  3.333333 
                                     Football Manager 2015 
                                                  3.333333 
                                     Football Manager 2016 
                                                  5.000000 
                                Football Manager 2016 Demo 
                                                  1.000000 
                                                 From Dust 
                                                  2.000000 
                                     FTL Faster Than Light 
                                                  2.666667 
                                Galactic Civilizations III 
                                                  1.000000 
                                           Game Dev Tycoon 
                                                  4.000000 
                                           Game of Thrones 
                                                  4.000000 
                 Game of Thrones - A Telltale Games Series 
                                                  4.000000 
                                               Gang Beasts 
                                                  3.000000 
                                               Garry's Mod 
                                                  2.000000 
                                                      Gish 
                                                  3.000000 
                                             Global Agenda 
                                                  3.000000 
                                            Goat Simulator 
                                                  2.000000 
                                                     Godus 
                                                  3.000000 
                        Gotham City Impostors Free To Play 
                                                  3.000000 
                                    Gothic II Gold Edition 
                                                  3.000000 
                                       Grand Theft Auto IV 
                                                  2.666667 
                              Grand Theft Auto San Andreas 
                                                  3.000000 
                                        Grand Theft Auto V 
                                                  3.666667 
                                Grand Theft Auto Vice City 
                                                  2.000000 
                                                      GRID 
                                                  4.000000 
                                                 Grim Dawn 
                                                  4.000000 
                                 Guardians of Middle-earth 
                                                  3.000000 
                                                Guild Wars 
                                                  3.000000 
                                               Gun Monkeys 
                                                  4.000000 
                                                  Gunpoint 
                                                  4.000000 
                                     Guns of Icarus Online 
                                                  3.000000 
                                                      H1Z1 
                                                  2.000000 
                                          Hacker Evolution 
                                                  4.000000 
                                                 Half-Life 
                                                  3.333333 
                                               Half-Life 2 
                                                  4.000000 
                                    Half-Life 2 Deathmatch 
                                                  2.000000 
                                   Half-Life 2 Episode One 
                                                  2.666667 
                                    Half-Life 2 Lost Coast 
                                                  3.500000 
                                      Half-Life Blue Shift 
                                                  5.000000 
                               Half-Life Deathmatch Source 
                                                  4.000000 
                                  Half-Life Opposing Force 
                                                  4.000000 
                                          Haunted Memories 
                                                  4.000000 
                                                HELLDIVERS 
                                                  5.000000 
                                         Heroes & Generals 
                                                  1.000000 
                                 Heroes of Might & Magic V 
                                                  3.000000 
                                        Hitman Blood Money 
                                                  3.000000 
                                                     HOARD 
                                                  1.000000 
                                                 Homefront 
                                                  3.500000 
                           Homeworld Remastered Collection 
                                                  2.400000 
                                             Hotline Miami 
                                                  3.500000 
                                            How to Survive 
                                                  3.500000 
                                                I am Bread 
                                                  4.000000 
                              Infestation Survivor Stories 
                                                  3.000000 
                                                Insurgency 
                                                  3.000000 
                                                 Jamestown 
                                                  5.000000 
                                    Joe Danger 2 The Movie 
                                                  3.000000 
                                              Just Cause 2 
                                                  2.333333 
                                      Kerbal Space Program 
                                                  3.000000 
                                    KickBeat Steam Edition 
                                                  4.000000 
                                             Killing Floor 
                                                  2.750000 
                                           Killing Floor 2 
                                                  3.000000 
                      Killing Floor Mod Defence Alliance 2 
                                                  4.000000 
                                    King Arthur Collection 
                                                  2.333333 
                 King Arthur II - The Role-playing Wargame 
                                                  2.500000 
                              Kingdoms of Amalur Reckoning 
                                                  3.000000 
                                          Knights of Honor 
                                                  3.000000 
                               Knights of Pen and Paper +1 
                                                  5.000000 
                                                L.A. Noire 
                                                  3.500000 
                                               Left 4 Dead 
                                                  2.500000 
                                             Left 4 Dead 2 
                                                  1.875000 
                                               LEGO Worlds 
                                                  3.000000 
                                             Lethal League 
                                                  5.000000 
                                                     LIMBO 
                                                  4.000000 
                                            Little Inferno 
                                                  1.000000 
                                                   Loadout 
                                                  2.000000 
                          Lone Survivor The Director's Cut 
                                                  1.000000 
                                       Lords Of The Fallen 
                                                  3.000000 
                                             Lost Planet 2 
                                                  5.000000 
                             Lost Planet Extreme Condition 
                                                  3.000000 
                                               Machinarium 
                                                  3.000000 
                                                   Mad Max 
                                                  5.000000 
                                                  Mafia II 
                                                  3.500000 
                                                Magic 2014 
                                                  3.000000 
                                               Magic Duels 
                                                  2.500000 
     Magic The Gathering - Duels of the Planeswalkers 2013 
                                                  3.000000 
      Magic The Gathering  Duels of the Planeswalkers 2012 
                                                  3.000000 
                                                   Magicka 
                                                  2.000000 
                                      Majesty 2 Collection 
                                                  3.000000 
                                         Mark of the Ninja 
                                                  3.000000 
                                               Mass Effect 
                                                  2.000000 
                                             Mass Effect 2 
                                                  3.000000 
                                                   McPixel 
                                                  4.000000 
                            Medal of Honor(TM) Multiplayer 
                                                  5.000000 
                          Medal of Honor(TM) Single Player 
                                                  5.000000 
                                        Medieval Engineers 
                                                  3.000000 
                                     Medieval II Total War 
                                                  1.000000 
                            Medieval II Total War Kingdoms 
                                                  1.000000 
                                  Men of War Assault Squad 
                                                  3.000000 
                          METAL GEAR SOLID V GROUND ZEROES 
                                                  5.000000 
                       METAL GEAR SOLID V THE PHANTOM PAIN 
                                                  3.500000 
                                                Metro 2033 
                                                  2.500000 
                                                  Miasmata 
                                                  5.000000 
                Microsoft Flight Simulator X Steam Edition 
                                                  3.000000 
                             Middle-earth Shadow of Mordor 
                                                  3.500000 
                                   Might & Magic Heroes VI 
                                                  2.000000 
                                             Mirror's Edge 
                                                  3.000000 
                                                    Monaco 
                                                  2.000000 
                                           Mortal Kombat X 
                                                  2.000000 
                                             Mount & Blade 
                                                  3.000000 
                                     Mount & Blade Warband 
                                                  2.250000 
                         Mount & Blade With Fire and Sword 
                                                  3.000000 
                                        Napoleon Total War 
                                                  2.000000 
                                       Natural Selection 2 
                                                  2.000000 
                                Need for Speed Hot Pursuit 
                                                  3.000000 
                                      Need for Speed SHIFT 
                                                  5.000000 
                             Neverwinter Nights 2 Platinum 
                                                  1.500000 
                              Next Car Game Sneak Peek 2.0 
                                                  5.000000 
                                   Next Car Game Wreckfest 
                                                  3.000000 
                                                   Nidhogg 
                                                  3.000000 
                                    Oddworld New 'n' Tasty 
                                                  1.000000 
                                          Orcs Must Die! 2 
                                                  3.000000 
                                             ORION Prelude 
                                                  2.000000 
                                                   Outlast 
                                                  3.000000 
                                                Overgrowth 
                                                  5.000000 
                          PAC-MAN Championship Edition DX+ 
                                                  2.000000 
                                            Papers, Please 
                                                  3.500000 
                                             Path of Exile 
                                                  2.333333 
                                                  PAYDAY 2 
                                                  3.000000 
                                          PAYDAY The Heist 
                                                  3.000000 
                                                       Pid 
                                                  4.000000 
                                        Plague Inc Evolved 
                                                  4.000000 
                                               Plain Sight 
                                                  5.000000 
                                              PlanetSide 2 
                                                  2.000000 
                                             Port Royale 3 
                                                  3.000000 
                                                    Portal 
                                                  3.000000 
                                                  Portal 2 
                                                  3.000000 
                                                  POSTAL 2 
                                                  4.000000 
                                          Prison Architect 
                                                  3.666667 
                                           Project Zomboid 
                                                  3.000000 
                                                   Proteus 
                                                  1.000000 
                                                   R.U.S.E 
                                                  3.000000 
                                                   RACE 07 
                                                  3.500000 
                                RaceRoom Racing Experience 
                                                  2.000000 
                                                  Ragnarok 
                                                  3.000000 
                                         Ragnarok Online 2 
                                                  3.000000 
                                            Really Big Sky 
                                                  4.000000 
                                      Realm of the Mad God 
                                                  2.500000 
                             Resident Evil 6 / Biohazard 6 
                                                  5.000000 
                                     Retro City Rampage DX 
                                                  3.000000 
                                                      Reus 
                                                  3.000000 
                                     Revenge of the Titans 
                                                  3.000000 
                          Rise of Nations Extended Edition 
                                                  5.000000 
                                     Risen 2 - Dark Waters 
                                                  4.000000 
                  Rising Storm/Red Orchestra 2 Multiplayer 
                                                  2.000000 
                                              Risk of Rain 
                                                  3.000000 
                                                 Robocraft 
                                                  3.000000 
                                              Rock of Ages 
                                                  1.000000 
                                             Rocket League 
                                                  3.000000 
                            Rocketbirds Hardboiled Chicken 
                                                  3.000000 
                                            Rome Total War 
                                                  3.000000 
                                Rome Total War - Alexander 
                                                  2.000000 
                                               Royal Quest 
                                                  5.000000 
                                                      Rust 
                                                  3.666667 
                                              Saints Row 2 
                                                  2.500000 
                                             Saints Row IV 
                                                  4.000000 
                                      Saints Row The Third 
                                                  3.000000 
                                                 Sanctum 2 
                                                  3.000000 
                                   Scribblenauts Unlimited 
                                                  3.000000 
                                         Serious Sam 3 BFE 
                                                  3.000000 
                  Serious Sam Classic The Second Encounter 
                                                  1.000000 
                        Serious Sam HD The First Encounter 
                                                  3.000000 
                       Serious Sam HD The Second Encounter 
                                                  2.500000 
                                            Shadow Warrior 
                                                  5.000000 
                     Shadowrun Dragonfall - Director's Cut 
                                                  4.000000 
                                         Shadowrun Returns 
                                                  3.333333 
                                                   Shank 2 
                                                  3.000000 
                                                   Shelter 
                                                  1.000000 
                                Sid Meier's Civilization V 
                                                  2.500000 
                                      Sid Meier's Pirates! 
                                                  4.000000 
                                          Sigils of Elohim 
                                                  3.000000 
                                                 Sine Mora 
                                                  4.000000 
                          Sins of a Solar Empire Rebellion 
                                                  2.000000 
                            Sins of a Solar Empire Trinity 
                                                  5.000000 
                                             Sleeping Dogs 
                                                  4.000000 
                                            Sniper Elite 3 
                                                  2.500000 
                                           Sniper Elite V2 
                                                  2.800000 
                                      Sniper Ghost Warrior 
                                                  3.000000 
                                                   Solar 2 
                                                  3.000000 
                                         Sonic Adventure 2 
                                                  5.000000 
                                          Source Filmmaker 
                                                  2.000000 
                             South Park The Stick of Truth 
                                                  4.000000 
                                           Space Engineers 
                                                  2.400000 
                                         Spec Ops The Line 
                                                  4.000000 
                                                  Spelunky 
                                                  2.000000 
                                 Spore Galactic Adventures 
                                                  4.000000 
                                             Star Conflict 
                                                  4.000000 
                                          Star Trek Online 
                                                  4.000000 
                                Star Wars - Battlefront II 
                                                  3.000000 
                   Star Wars - Jedi Knight II Jedi Outcast 
                                                  3.000000 
                     Star Wars Knights of the Old Republic 
                                                  4.000000 
   STAR WARS Knights of the Old Republic II The Sith Lords 
                                                  5.000000 
                               Star Wars Republic Commando 
                                                  4.000000 
                                                 Starbound 
                                                  3.000000 
                                            State of Decay 
                                                  3.000000 
                                             Stranded Deep 
                                                  2.000000 
                                          Strike Suit Zero 
                                                  4.000000 
                                              Stronghold 2 
                                                  3.000000 
                                              Stronghold 3 
                                                  4.500000 
                                    Stronghold Crusader HD 
                                                  3.000000 
                                             Stronghold HD 
                                                  5.000000 
                                        Stronghold Legends 
                                                  3.000000 
                                           Super Crate Box 
                                                  4.000000 
                          Super Killer Hornet Resurrection 
                                                  4.000000 
                                            Super Meat Boy 
                                                  2.333333 
                                       Supreme Commander 2 
                                                  3.000000 
                         Supreme Commander Forged Alliance 
                                                  3.000000 
                                                 Survarium 
                                                  2.000000 
                                        Tabletop Simulator 
                                                  3.000000 
                                           Team Fortress 2 
                                                  1.888889 
                                                      TERA 
                                                  2.000000 
                                                  Terraria 
                                                  2.600000 
                                           The Bard's Tale 
                                                  2.500000 
                                      The Binding of Isaac 
                                                  2.000000 
                              The Binding of Isaac Rebirth 
                                                  5.000000 
                                                The Bridge 
                                                  3.000000 
                                                  The Cave 
                                                  3.000000 
                                                  The Crew 
                                                  4.000000 
                           The Elder Scrolls III Morrowind 
                                                  2.500000 
                             The Elder Scrolls IV Oblivion 
                                                  3.000000 
                                                The Forest 
                                                  3.000000 
                                             The Long Dark 
                                                  3.500000 
                    The Lord of the Rings War in the North 
                                                  2.000000 
                                            The Sims(TM) 3 
                                                  3.000000 
                                       The Stanley Parable 
                                                  5.000000 
                                               The Swapper 
                                                  4.000000 
                               The Walking Dead Season Two 
                                                  3.000000 
         The Witcher 2 Assassins of Kings Enhanced Edition 
                                                  2.500000 
                                   The Witcher 3 Wild Hunt 
                                                  3.000000 
                              The Witcher Enhanced Edition 
                                                  2.000000 
                                         They Bleed Pixels 
                                                  3.000000 
                                          Thomas Was Alone 
                                                  3.000000 
                                            Ticket to Ride 
                                                  2.000000 
                          Tiny and Big Grandpa's Leftovers 
                                                  5.000000 
                                               Titan Quest 
                                                  2.000000 
                                              Toki Tori 2+ 
                                                  1.000000 
                    Tom Clancy's Ghost Recon Phantoms - EU 
                                                  2.000000 
                    Tom Clancy's Ghost Recon Phantoms - NA 
                                                  2.000000 
                                               Tomb Raider 
                                                  3.000000 
                                                  Toribash 
                                                  3.000000 
                                          Total War ATTILA 
                                                  2.000000 
                       Total War ROME II - Emperor Edition 
                                                  3.000000 
                                        Total War SHOGUN 2 
                                                  2.666667 
                                       TowerFall Ascension 
                                                  5.000000 
                                             Town of Salem 
                                                  4.000000 
                                              Toy Soldiers 
                                                  2.000000 
                                        TrackMania Stadium 
                                                  3.500000 
                                         TrackMania United 
                                                  5.000000 
                                               Train Fever 
                                                  5.000000 
                                       Trainz Simulator 12 
                                                  4.000000 
                             Trials Evolution Gold Edition 
                                                  5.000000 
                                                   Trine 2 
                                                  4.000000 
                                                 Tropico 4 
                                                  3.000000 
                                                 Tropico 5 
                                                  3.500000 
                                             Two Worlds II 
                                                  4.000000 
                                   Ultra Street Fighter IV 
                                                  3.000000 
                                                 Undertale 
                                                  4.000000 
                                          Universe Sandbox 
                                                  3.000000 
                                                  Unturned 
                                                  2.600000 
                                       Valkyria Chronicles 
                                                  3.000000 
                                               Victoria II 
                                                  3.500000 
                                      Villagers and Heroes 
                                                  5.000000 
                                               Waking Mars 
                                                  1.000000 
                                          War of the Roses 
                                                  3.000000 
                                               War Thunder 
                                                  2.333333 
                                                  Warframe 
                                                  1.666667 
                               Wargame European Escalation 
                                                  2.000000 
                                        Wargame Red Dragon 
                                                  2.000000 
              Warhammer 40,000 Dawn of War II  Retribution 
                                                  2.000000 
                                 Wolfenstein The New Order 
                                                  3.000000 
                                            Worms Reloaded 
                                                  2.500000 
                                          Worms Revolution 
                                                  4.000000 
                                        XCOM Enemy Unknown 
                                                  3.000000 
                                  You Have to Win the Game 
                                                  1.000000 
                                       Zombie Panic Source 
                                                  2.000000 

Best UBCF Model: ubcf_model_3 (0.8189319) as its the lowest number.

Best IBCF Model: ibcf_model_6 (MAE = 1.140654) as its the lowest numebr

``` ## Part 8

They could use this collaborative filtering model by offering new games recommendations based on their previous gaming purchases. Could also tailor sales and promotions to specific audiences based on their personal refernces.