Guest User

Untitled

a guest
Apr 9th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. var totalPosition ={}, totalCount={}, cardData={};
  2. for(var i in rawData){
  3. if(rawData[i].bestOf&&rawData[i].bestOf==3&&rawData[i].gameStats&&rawData[i].gameStats[0]&&rawData[i].gameStats[0].deckSize==60) {
  4. var deck = rawData[i].playerDeck.mainDeck;
  5. var runningCount = 0;
  6. for(var n = 0; n<deck.length; n++){
  7. totalPosition[deck[n].id]=totalPosition[deck[n].id]||0;
  8. totalPosition[deck[n].id]+=(runningCount+deck[n].quantity/2-.5)*deck[n].quantity;
  9. totalCount[deck[n].id]=totalCount[deck[n].id]||0;
  10. totalCount[deck[n].id]+=deck[n].quantity;
  11. runningCount+=deck[n].quantity;
  12. }
  13. }
  14. }
  15. for(var x in totalPosition){
  16. cardData[x] = {
  17. count : totalCount[x],
  18. avgPosition : Math.round(totalPosition[x]/totalCount[x]*10)/10
  19. }
  20. }
  21.  
  22. /* output:
  23. ID | Count | Average Position
  24. AVG | -- | 30
  25. 66057 | 12 | 12.5
  26. 66067 | 9 | 16
  27. 66091 | 6 | 19.5
  28. 66109 | 12 | 15.8
  29. 66125 | 9 | 7
  30. 66207 | 50 | 13.4
  31. 66223 | 271 | 34.8
  32. 66325 | 100 | 32.5
  33. 66363 | 517 | 10.5
  34. 66401 | 540 | 17.8
  35. 66415 | 158 | 23.9
  36. 66433 | 125 | 31.3
  37. 66483 | 3 | 18
  38. 66485 | 168 | 38.5
  39. 66509 | 10 | 37
  40. 66517 | 20 | 44.5
  41. 66533 | 40 | 34.5
  42. 66709 | 2 | 16.5
  43. 66781 | 113 | 28
  44. 66889 | 533 | 20.8
  45. 66901 | 12 | 45.7
  46. 66939 | 12 | 13.2
  47. 67007 | 36 | 58
  48. 67019 | 240 | 18.5
  49. 67023 | 596 | 25.6
  50. 67106 | 40 | 37
  51. 67224 | 6 | 0.5
  52. 67266 | 258 | 33.4
  53. 67284 | 13 | 7.6
  54. 67444 | 3 | 51
  55. 67502 | 91 | 21.8
  56. 67584 | 269 | 45.5
  57. 67588 | 197 | 43.1
  58. 67590 | 6 | 3
  59. 67594 | 6 | 4
  60. 67598 | 12 | 3.5
  61. 67600 | 491 | 54.5
  62. 67992 | 12 | 22.5
  63. 68096 | 347 | 29.3
  64. 68112 | 9 | 26
  65. 68180 | 52 | 43.1
  66. 68184 | 10 | 57
  67. 68202 | 20 | 58.5
  68. 68310 | 520 | 5.6
  69. 68502 | 4 | 13.5
  70. 68506 | 3 | 28
  71. 68530 | 40 | 34
  72. 68538 | 100 | 27.7
  73. 68569 | 12 | 30.5
  74. 68615 | 3 | 33
  75. 68624 | 12 | 35.5
  76. 68636 | 18 | 27.5
  77. 68653 | 6 | 38.5
  78. 68666 | 158 | 20.8
  79. 68674 | 52 | 36.2
  80. 68688 | 12 | 41.5
  81. 68691 | 2 | 57.5
  82. 68694 | 387 | 38
  83. 68709 | 1 | 48
  84. 68714 | 12 | 32
  85. 68724 | 4 | 39.5
  86. 68732 | 4 | 31.5
  87. 68734 | 540 | 48.8
  88. 68736 | 4 | 43.5
  89. 68738 | 12 | 45.5
  90. 68740 | 344 | 52.7
  91. 68742 | 21 | 51
  92. 68744 | 15 | 57
  93. 68745 | 20 | 40.5
  94. 69131 | 4 | 1.5
  95. 69168 | 4 | 9.5
  96. 69230 | 2 | 16.5
  97. 69250 | 5 | 53
  98. 69254 | 4 | 19.5
  99. 69259 | 5 | 52
  100. 69277 | 6 | 30.7
  101. 69306 | 19 | 50.7
  102. 69311 | 365 | 7.7
  103. 69380 | 4 | 5.5
  104. 69391 | 4 | 27.5
  105. 69394 | 168 | 34.5
  106. 69397 | 3 | 35
  107. 69398 | 1 | 37
  108. 69405 | 4 | 47.5
  109. */
Advertisement
Add Comment
Please, Sign In to add comment