From 8cdc531858dfa1b8f3c6c90a1d3058a92bfd8f78 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sun, 9 Jun 2019 05:39:51 +0100 Subject: - Added solutions by Jo Christian Oterhals. --- challenge-011/jo-christian-oterhals/perl6/ch-1.p6 | 28 +- challenge-011/jo-christian-oterhals/perl6/ch-1.sh | 1 - challenge-011/jo-christian-oterhals/perl6/ch-1a.p6 | 3 + challenge-011/jo-christian-oterhals/perl6/ch-2.p6 | 5 + stats/pwc-current.json | 326 +++++++-------- stats/pwc-language-breakdown-summary.json | 74 ++-- stats/pwc-language-breakdown.json | 110 ++--- stats/pwc-leaders.json | 454 ++++++++++----------- stats/pwc-summary-1-30.json | 108 ++--- stats/pwc-summary-31-60.json | 100 ++--- stats/pwc-summary-61-90.json | 36 +- stats/pwc-summary-91-120.json | 42 +- stats/pwc-summary.json | 240 +++++------ 13 files changed, 767 insertions(+), 760 deletions(-) delete mode 100644 challenge-011/jo-christian-oterhals/perl6/ch-1.sh create mode 100644 challenge-011/jo-christian-oterhals/perl6/ch-1a.p6 create mode 100644 challenge-011/jo-christian-oterhals/perl6/ch-2.p6 diff --git a/challenge-011/jo-christian-oterhals/perl6/ch-1.p6 b/challenge-011/jo-christian-oterhals/perl6/ch-1.p6 index 54955d03c7..aa12ae87ce 100644 --- a/challenge-011/jo-christian-oterhals/perl6/ch-1.p6 +++ b/challenge-011/jo-christian-oterhals/perl6/ch-1.p6 @@ -1,21 +1,21 @@ #!/usr/bin/env perl6 -multi MAIN( #= Compares the C. scale to any scale you dream up - Real $f, #= freezing point in custom scale - Real $b #= boiling point in custom scale +multi MAIN( #= Compares the Celcius scale to whatever scale you dream up + Real $f, #= freezing point in this scale + Real $b #= boiling point in this scale ) { - say "There is no equal point for this scale." and exit if $b - $f == 100; - my $equal-point = $f / (1 - (($b - $f) / 100)); - say "The calculated equal point is only theoretical as it is below absolute zero." if $equal-point < -273.15; - say "Equal point: $equal-point"; + say "There is no equal point for this scale." and exit if $b - $f == 100; + my $equal-point = $f / (1 - (($b - $f) / 100)); + say "The calculated equal point is only theoretical as it is below absolute zero." if $equal-point < -273.15; + say "Equal point: $equal-point"; } -multi MAIN( #= Compares the C. scale to a named temperature scale - Str $scale where { $_ ~~ m:i/^(fahrenheit|kelvin|rankin)$/ } #= Name of scale (Fahrenheit, Kelvin or Rankin) +multi MAIN( #= Compares the Celcius scale to a given temperature scale + Str $scale where { $_ ~~ m:i/^(fahrenheit|kelvin|rankin)$/ } #= Name of scale (Fahrenheit, Kelvin or Rankin) ) { - given $scale.fc { - when "fahrenheit" { MAIN( 32 , 212 ); } - when "kelvin" { MAIN(273.15, 373.15); } - when "rankin" { MAIN(491.67, 671.67); } - } + given $scale.fc { + when "fahrenheit" { MAIN( 32 , 212 ); } + when "kelvin" { MAIN(273.15, 373.15); } + when "rankin" { MAIN(491.67, 671.67); } + } } diff --git a/challenge-011/jo-christian-oterhals/perl6/ch-1.sh b/challenge-011/jo-christian-oterhals/perl6/ch-1.sh deleted file mode 100644 index 46451905ba..0000000000 --- a/challenge-011/jo-christian-oterhals/perl6/ch-1.sh +++ /dev/null @@ -1 +0,0 @@ -perl6 -e 'sub MAIN($a, $b) { say "Equal point: " ~ ( $b - $a == 100 ?? "None" !! $a / (1 - (($b - $a) / 100))) }' 32 212 diff --git a/challenge-011/jo-christian-oterhals/perl6/ch-1a.p6 b/challenge-011/jo-christian-oterhals/perl6/ch-1a.p6 new file mode 100644 index 0000000000..bff294d1a6 --- /dev/null +++ b/challenge-011/jo-christian-oterhals/perl6/ch-1a.p6 @@ -0,0 +1,3 @@ +#!/usr/bin/env perl6 + +-> $a, $b { say "Equal point: " ~ ( $b - $a == 100 ?? "None" !! $a / (1 - (($b - $a) / 100))) }(32,212) diff --git a/challenge-011/jo-christian-oterhals/perl6/ch-2.p6 b/challenge-011/jo-christian-oterhals/perl6/ch-2.p6 new file mode 100644 index 0000000000..db71e84635 --- /dev/null +++ b/challenge-011/jo-christian-oterhals/perl6/ch-2.p6 @@ -0,0 +1,5 @@ +#!/usr/bin/env perl6 + +my &idm = -> $size { gather for ^$size -> $y { take map { Int($_ == $y) }, ^$size } }; +.join(' ').say for idm(4); # 4... 2... 16... or whatever... + diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 8f1b1655d2..47ce2ef5b1 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,148 +1,37 @@ { - "legend" : { - "enabled" : 0 - }, - "xAxis" : { - "type" : "category" + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointerFormat" : "{point.name}: {point.y:f}
" }, - "series" : [ - { - "data" : [ - { - "drilldown" : "Aaron Sherman", - "y" : 2, - "name" : "Aaron Sherman" - }, - { - "name" : "Alicia Bielsa", - "y" : 2, - "drilldown" : "Alicia Bielsa" - }, - { - "name" : "Andrezgz", - "drilldown" : "Andrezgz", - "y" : 2 - }, - { - "name" : "Arne Sommer", - "drilldown" : "Arne Sommer", - "y" : 2 - }, - { - "y" : 2, - "drilldown" : "Dave Jacoby", - "name" : "Dave Jacoby" - }, - { - "name" : "E. Choroba", - "y" : 2, - "drilldown" : "E. Choroba" - }, - { - "name" : "Feng Chang", - "y" : 4, - "drilldown" : "Feng Chang" - }, - { - "drilldown" : "Francis Whittle", - "y" : 2, - "name" : "Francis Whittle" - }, - { - "drilldown" : "Gustavo Chaves", - "y" : 2, - "name" : "Gustavo Chaves" - }, - { - "name" : "Jo Christian Oterhals", - "drilldown" : "Jo Christian Oterhals", - "y" : 1 - }, - { - "y" : 6, - "drilldown" : "Joelle Maslak", - "name" : "Joelle Maslak" - }, - { - "name" : "Khalid", - "y" : 2, - "drilldown" : "Khalid" - }, - { - "name" : "Kivanc Yazan", - "y" : 2, - "drilldown" : "Kivanc Yazan" - }, - { - "drilldown" : "Laurent Rosenfeld", - "y" : 4, - "name" : "Laurent Rosenfeld" - }, - { - "name" : "Maxim Nechaev", - "drilldown" : "Maxim Nechaev", - "y" : 2 - }, - { - "y" : 1, - "drilldown" : "Pete Houston", - "name" : "Pete Houston" - }, - { - "name" : "Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 2 - }, - { - "name" : "Steven Wilson", - "y" : 3, - "drilldown" : "Steven Wilson" - }, - { - "y" : 2, - "drilldown" : "Yozen Hernandez", - "name" : "Yozen Hernandez" - } - ], - "name" : "Champions", - "colorByPoint" : 1 + "yAxis" : { + "title" : { + "text" : "Total Solutions" } - ], - "title" : { - "text" : "Perl Weekly Challenge - 011" - }, - "chart" : { - "type" : "column" }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } + "xAxis" : { + "type" : "category" }, "drilldown" : { "series" : [ { - "id" : "Aaron Sherman", "data" : [ [ "Perl 6", 2 ] ], + "id" : "Aaron Sherman", "name" : "Aaron Sherman" }, { - "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 2 ] ], + "id" : "Alicia Bielsa", "name" : "Alicia Bielsa" }, { @@ -152,32 +41,32 @@ 2 ] ], - "id" : "Andrezgz", - "name" : "Andrezgz" + "name" : "Andrezgz", + "id" : "Andrezgz" }, { - "name" : "Arne Sommer", - "id" : "Arne Sommer", "data" : [ [ "Perl 6", 2 ] - ] + ], + "id" : "Arne Sommer", + "name" : "Arne Sommer" }, { - "name" : "Dave Jacoby", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Dave Jacoby" + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { - "name" : "E. Choroba", "id" : "E. Choroba", + "name" : "E. Choroba", "data" : [ [ "Perl 5", @@ -186,6 +75,7 @@ ] }, { + "id" : "Feng Chang", "name" : "Feng Chang", "data" : [ [ @@ -196,22 +86,21 @@ "Perl 6", 3 ] - ], - "id" : "Feng Chang" + ] }, { - "name" : "Francis Whittle", - "id" : "Francis Whittle", "data" : [ [ "Perl 6", 2 ] - ] + ], + "id" : "Francis Whittle", + "name" : "Francis Whittle" }, { - "name" : "Gustavo Chaves", "id" : "Gustavo Chaves", + "name" : "Gustavo Chaves", "data" : [ [ "Perl 5", @@ -220,17 +109,16 @@ ] }, { - "name" : "Jo Christian Oterhals", "id" : "Jo Christian Oterhals", + "name" : "Jo Christian Oterhals", "data" : [ [ "Perl 6", - 1 + 2 ] ] }, { - "id" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -241,30 +129,30 @@ 3 ] ], - "name" : "Joelle Maslak" + "name" : "Joelle Maslak", + "id" : "Joelle Maslak" }, { + "id" : "Khalid", "name" : "Khalid", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Khalid" + ] }, { - "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Kivanc Yazan" + "name" : "Kivanc Yazan", + "id" : "Kivanc Yazan" }, { - "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", @@ -275,16 +163,17 @@ 2 ] ], - "id" : "Laurent Rosenfeld" + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" }, { - "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 2 ] ], + "id" : "Maxim Nechaev", "name" : "Maxim Nechaev" }, { @@ -298,48 +187,159 @@ ] }, { + "name" : "Simon Proctor", "id" : "Simon Proctor", "data" : [ [ "Perl 6", 2 ] - ], - "name" : "Simon Proctor" + ] }, { + "name" : "Steven Wilson", "id" : "Steven Wilson", "data" : [ [ "Perl 5", 3 ] - ], - "name" : "Steven Wilson" + ] }, { - "name" : "Yozen Hernandez", - "id" : "Yozen Hernandez", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Yozen Hernandez", + "name" : "Yozen Hernandez" } ] }, - "subtitle" : { - "text" : "[Champions: 19] Last updated at 2019-06-09 04:28:32 GMT" + "chart" : { + "type" : "column" }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "pointerFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "name" : "Aaron Sherman", + "y" : 2, + "drilldown" : "Aaron Sherman" + }, + { + "y" : 2, + "drilldown" : "Alicia Bielsa", + "name" : "Alicia Bielsa" + }, + { + "y" : 2, + "drilldown" : "Andrezgz", + "name" : "Andrezgz" + }, + { + "name" : "Arne Sommer", + "y" : 2, + "drilldown" : "Arne Sommer" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 2, + "name" : "Dave Jacoby" + }, + { + "name" : "E. Choroba", + "y" : 2, + "drilldown" : "E. Choroba" + }, + { + "drilldown" : "Feng Chang", + "y" : 4, + "name" : "Feng Chang" + }, + { + "name" : "Francis Whittle", + "drilldown" : "Francis Whittle", + "y" : 2 + }, + { + "name" : "Gustavo Chaves", + "drilldown" : "Gustavo Chaves", + "y" : 2 + }, + { + "name" : "Jo Christian Oterhals", + "y" : 2, + "drilldown" : "Jo Christian Oterhals" + }, + { + "name" : "Joelle Maslak", + "y" : 6, + "drilldown" : "Joelle Maslak" + }, + { + "name" : "Khalid", + "y" : 2, + "drilldown" : "Khalid" + }, + { + "name" : "Kivanc Yazan", + "drilldown" : "Kivanc Yazan", + "y" : 2 + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 4, + "name" : "Laurent Rosenfeld" + }, + { + "name" : "Maxim Nechaev", + "y" : 2, + "drilldown" : "Maxim Nechaev" + }, + { + "name" : "Pete Houston", + "y" : 1, + "drilldown" : "Pete Houston" + }, + { + "y" : 2, + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" + }, + { + "y" : 3, + "drilldown" : "Steven Wilson", + "name" : "Steven Wilson" + }, + { + "drilldown" : "Yozen Hernandez", + "y" : 2, + "name" : "Yozen Hernandez" + } + ], + "name" : "Champions" + } + ], + "title" : { + "text" : "Perl Weekly Challenge - 011" }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } } + }, + "legend" : { + "enabled" : 0 + }, + "subtitle" : { + "text" : "[Champions: 19] Last updated at 2019-06-09 04:39:24 GMT" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 35a773cfc4..c312dc63f3 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,22 +1,19 @@ { - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 - }, - "subtitle" : { - "text" : "Last updated at 2019-06-09 04:29:10 GMT" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, - "legend" : { - "enabled" : "false" - }, "series" : [ { "name" : "Contributions", + "dataLabels" : { + "y" : 10, + "format" : "{point.y:.0f}", + "color" : "#FFFFFF", + "align" : "right", + "enabled" : "true", + "rotation" : -90, + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + }, "data" : [ [ "Blog", @@ -30,34 +27,37 @@ "Perl 6", 253 ] - ], - "dataLabels" : { - "format" : "{point.y:.0f}", - "y" : 10, - "align" : "right", - "enabled" : "true", - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "color" : "#FFFFFF", - "rotation" : -90 - } + ] } ], - "chart" : { - "type" : "column" - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" - }, "xAxis" : { - "type" : "category", "labels" : { "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" } + }, + "type" : "category" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" + }, + "legend" : { + "enabled" : "false" + }, + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "Last updated at 2019-06-09 04:39:36 GMT" + }, + "yAxis" : { + "min" : 0, + "title" : { + "text" : null } } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 47aa071120..2bd5558a9a 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -2,21 +2,18 @@ "xAxis" : { "type" : "category" }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, "series" : [ { "data" : [ { "drilldown" : "001", - "y" : 113, - "name" : "#001 [P5=76 P6=37]" + "name" : "#001 [P5=76 P6=37]", + "y" : 113 }, { "drilldown" : "002", - "y" : 95, - "name" : "#002 [P5=63 P6=32]" + "name" : "#002 [P5=63 P6=32]", + "y" : 95 }, { "drilldown" : "003", @@ -29,50 +26,64 @@ "drilldown" : "004" }, { - "y" : 55, + "drilldown" : "005", "name" : "#005 [P5=33 P6=22]", - "drilldown" : "005" + "y" : 55 }, { + "drilldown" : "006", "name" : "#006 [P5=27 P6=14]", - "y" : 41, - "drilldown" : "006" + "y" : 41 }, { - "drilldown" : "007", "y" : 46, - "name" : "#007 [P5=26 P6=20]" + "name" : "#007 [P5=26 P6=20]", + "drilldown" : "007" }, { - "name" : "#008 [P5=36 P6=20]", "y" : 56, + "name" : "#008 [P5=36 P6=20]", "drilldown" : "008" }, { - "drilldown" : "009", + "y" : 51, "name" : "#009 [P5=33 P6=18]", - "y" : 51 + "drilldown" : "009" }, { - "drilldown" : "010", "name" : "#010 [P5=30 P6=15]", - "y" : 45 + "y" : 45, + "drilldown" : "010" }, { + "drilldown" : "011", "y" : 46, - "name" : "#011 [P5=26 P6=20]", - "drilldown" : "011" + "name" : "#011 [P5=26 P6=20]" } ], - "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true" + "colorByPoint" : "true", + "name" : "Perl Weekly Challenge Languages" } ], + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, "chart" : { "type" : "column" }, "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-09 04:29:10 GMT" + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-09 04:39:36 GMT" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } }, "drilldown" : { "series" : [ @@ -105,7 +116,6 @@ "id" : "002" }, { - "name" : "003", "data" : [ [ "Perl 5", @@ -116,10 +126,12 @@ 26 ] ], + "name" : "003", "id" : "003" }, { "name" : "004", + "id" : "004", "data" : [ [ "Perl 5", @@ -129,11 +141,11 @@ "Perl 6", 29 ] - ], - "id" : "004" + ] }, { "name" : "005", + "id" : "005", "data" : [ [ "Perl 5", @@ -143,11 +155,9 @@ "Perl 6", 22 ] - ], - "id" : "005" + ] }, { - "name" : "006", "data" : [ [ "Perl 5", @@ -158,9 +168,12 @@ 14 ] ], - "id" : "006" + "id" : "006", + "name" : "006" }, { + "name" : "007", + "id" : "007", "data" : [ [ "Perl 5", @@ -170,12 +183,11 @@ "Perl 6", 20 ] - ], - "name" : "007", - "id" : "007" + ] }, { "name" : "008", + "id" : "008", "data" : [ [ "Perl 5", @@ -185,11 +197,9 @@ "Perl 6", 20 ] - ], - "id" : "008" + ] }, { - "name" : "009", "data" : [ [ "Perl 5", @@ -200,10 +210,12 @@ 18 ] ], + "name" : "009", "id" : "009" }, { "id" : "010", + "name" : "010", "data" : [ [ "Perl 5", @@ -213,12 +225,9 @@ "Perl 6", 15 ] - ], - "name" : "010" + ] }, { - "id" : "011", - "name" : "011", "data" : [ [ "Perl 5", @@ -228,27 +237,18 @@ "Perl 6", 20 ] - ] + ], + "name" : "011", + "id" : "011" } ] }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, "legend" : { "enabled" : "false" }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, "tooltip" : { "headerFormat" : "", "followPointer" : "true", diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 49e283d290..48c87b9346 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,7 +1,27 @@ { + "legend" : { + "enabled" : "false" + }, "chart" : { "type" : "column" }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "", + "followPointer" : "true" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, "series" : [ { "name" : "Perl Weekly Challenge Leaders", @@ -13,19 +33,19 @@ "drilldown" : "Laurent Rosenfeld" }, { - "name" : "#2: Joelle Maslak", "y" : 110, + "name" : "#2: Joelle Maslak", "drilldown" : "Joelle Maslak" }, { - "drilldown" : "Jaldhar H. Vyas", + "name" : "#3: Jaldhar H. Vyas", "y" : 80, - "name" : "#3: Jaldhar H. Vyas" + "drilldown" : "Jaldhar H. Vyas" }, { "drilldown" : "Ruben Westerberg", - "name" : "#4: Ruben Westerberg", - "y" : 68 + "y" : 68, + "name" : "#4: Ruben Westerberg" }, { "drilldown" : "Adam Russell", @@ -34,13 +54,13 @@ }, { "drilldown" : "Arne Sommer", - "y" : 58, - "name" : "#6: Arne Sommer" + "name" : "#6: Arne Sommer", + "y" : 58 }, { - "y" : 56, + "drilldown" : "Simon Proctor", "name" : "#7: Simon Proctor", - "drilldown" : "Simon Proctor" + "y" : 56 }, { "drilldown" : "Kian-Meng Ang", @@ -48,54 +68,54 @@ "name" : "#8: Kian-Meng Ang" }, { - "name" : "#9: Gustavo Chaves", - "y" : 46, - "drilldown" : "Gustavo Chaves" + "y" : 48, + "name" : "#9: Jo Christian Oterhals", + "drilldown" : "Jo Christian Oterhals" }, { - "drilldown" : "Jo Christian Oterhals", - "name" : "#10: Jo Christian Oterhals", - "y" : 46 + "y" : 46, + "name" : "#10: Gustavo Chaves", + "drilldown" : "Gustavo Chaves" }, { - "y" : 44, "name" : "#11: Dr James A. Smith", + "y" : 44, "drilldown" : "Dr James A. Smith" }, { - "drilldown" : "Francis Whittle", + "y" : 44, "name" : "#12: Francis Whittle", - "y" : 44 + "drilldown" : "Francis Whittle" }, { - "drilldown" : "Andrezgz", "name" : "#13: Andrezgz", - "y" : 42 + "y" : 42, + "drilldown" : "Andrezgz" }, { - "y" : 40, + "drilldown" : "Athanasius", "name" : "#14: Athanasius", - "drilldown" : "Athanasius" + "y" : 40 }, { + "drilldown" : "E. Choroba", "name" : "#15: E. Choroba", - "y" : 40, - "drilldown" : "E. Choroba" + "y" : 40 }, { - "drilldown" : "Dave Jacoby", + "name" : "#16: Dave Jacoby", "y" : 36, - "name" : "#16: Dave Jacoby" + "drilldown" : "Dave Jacoby" }, { "drilldown" : "Nick Logan", - "name" : "#17: Nick Logan", - "y" : 32 + "y" : 32, + "name" : "#17: Nick Logan" }, { + "drilldown" : "Daniel Mantovani", "name" : "#18: Daniel Mantovani", - "y" : 30, - "drilldown" : "Daniel Mantovani" + "y" : 30 }, { "drilldown" : "Lars Balker", @@ -103,19 +123,19 @@ "y" : 28 }, { + "drilldown" : "Mark Senn", "name" : "#20: Mark Senn", - "y" : 26, - "drilldown" : "Mark Senn" + "y" : 26 }, { - "y" : 22, + "drilldown" : "Yozen Hernandez", "name" : "#21: Yozen Hernandez", - "drilldown" : "Yozen Hernandez" + "y" : 22 }, { "drilldown" : "Doug Schrag", - "name" : "#22: Doug Schrag", - "y" : 20 + "y" : 20, + "name" : "#22: Doug Schrag" }, { "drilldown" : "Duncan C. White", @@ -123,9 +143,9 @@ "y" : 20 }, { - "drilldown" : "Steven Wilson", "name" : "#24: Steven Wilson", - "y" : 20 + "y" : 20, + "drilldown" : "Steven Wilson" }, { "y" : 18, @@ -134,43 +154,43 @@ }, { "drilldown" : "Guillermo Ramos", - "name" : "#26: Guillermo Ramos", - "y" : 18 + "y" : 18, + "name" : "#26: Guillermo Ramos" }, { - "drilldown" : "Maxim Nechaev", + "y" : 18, "name" : "#27: Maxim Nechaev", - "y" : 18 + "drilldown" : "Maxim Nechaev" }, { - "drilldown" : "Robert Gratza", + "name" : "#28: Robert Gratza", "y" : 16, - "name" : "#28: Robert Gratza" + "drilldown" : "Robert Gratza" }, { - "y" : 14, "name" : "#29: John Barrett", + "y" : 14, "drilldown" : "John Barrett" }, { - "y" : 14, + "drilldown" : "Khalid", "name" : "#30: Khalid", - "drilldown" : "Khalid" + "y" : 14 }, { "drilldown" : "Ozzy", - "name" : "#31: Ozzy", - "y" : 14 + "y" : 14, + "name" : "#31: Ozzy" }, { - "drilldown" : "Kivanc Yazan", + "y" : 12, "name" : "#32: Kivanc Yazan", - "y" : 12 + "drilldown" : "Kivanc Yazan" }, { - "name" : "#33: Maxim Kolodyazhny", + "drilldown" : "Maxim Kolodyazhny", "y" : 12, - "drilldown" : "Maxim Kolodyazhny" + "name" : "#33: Maxim Kolodyazhny" }, { "drilldown" : "Philippe Bruhat", @@ -178,14 +198,14 @@ "name" : "#34: Philippe Bruhat" }, { - "drilldown" : "Sergio Iglesias", + "y" : 12, "name" : "#35: Sergio Iglesias", - "y" : 12 + "drilldown" : "Sergio Iglesias" }, { - "drilldown" : "Arpad Toth", + "name" : "#36: Arpad Toth", "y" : 10, - "name" : "#36: Arpad Toth" + "drilldown" : "Arpad Toth" }, { "drilldown" : "Steve Rogerson", @@ -193,24 +213,24 @@ "y" : 10 }, { - "y" : 10, + "drilldown" : "Veesh Goldman", "name" : "#38: Veesh Goldman", - "drilldown" : "Veesh Goldman" + "y" : 10 }, { - "y" : 8, "name" : "#39: Alex Daniel", + "y" : 8, "drilldown" : "Alex Daniel" }, { - "drilldown" : "Bob Kleemann", "y" : 8, - "name" : "#40: Bob Kleemann" + "name" : "#40: Bob Kleemann", + "drilldown" : "Bob Kleemann" }, { + "drilldown" : "Chenyf", "y" : 8, - "name" : "#41: Chenyf", - "drilldown" : "Chenyf" + "name" : "#41: Chenyf" }, { "drilldown" : "David Kayal", @@ -223,29 +243,29 @@ "drilldown" : "Feng Chang" }, { - "drilldown" : "Finley", + "y" : 8, "name" : "#44: Finley", - "y" : 8 + "drilldown" : "Finley" }, { + "drilldown" : "Jaime Corchado", "y" : 8, - "name" : "#45: Jaime Corchado", - "drilldown" : "Jaime Corchado" + "name" : "#45: Jaime Corchado" }, { - "drilldown" : "Luis F. Uceta", "y" : 8, - "name" : "#46: Luis F. Uceta" + "name" : "#46: Luis F. Uceta", + "drilldown" : "Luis F. Uceta" }, { - "name" : "#47: Matt Latusek", "y" : 8, + "name" : "#47: Matt Latusek", "drilldown" : "Matt Latusek" }, { + "drilldown" : "Neil Bowers", "y" : 8, - "name" : "#48: Neil Bowers", - "drilldown" : "Neil Bowers" + "name" : "#48: Neil Bowers" }, { "drilldown" : "Pete Houston", @@ -261,27 +281,7 @@ } ], "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-09 04:29:00 GMT" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - } - } - }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, - "legend" : { - "enabled" : "false" - }, - "tooltip" : { - "headerFormat" : "", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : "true" + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-09 04:39:31 GMT" }, "xAxis" : { "type" : "category" @@ -289,49 +289,49 @@ "drilldown" : { "series" : [ { - "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ [ - "Perl 6", - 21 + "Perl 5", + 22 ], [ "Blog", 13 ], [ - "Perl 5", - 22 + "Perl 6", + 21 ] ], - "name" : "Laurent Rosenfeld" + "id" : "Laurent Rosenfeld" }, { - "name" : "Joelle Maslak", "data" : [ - [ - "Perl 6", - 26 - ], [ "Blog", 3 ], + [ + "Perl 6", + 26 + ], [ "Perl 5", 26 ] ], - "id" : "Joelle Maslak" + "id" : "Joelle Maslak", + "name" : "Joelle Maslak" }, { "data" : [ [ - "Perl 5", + "Perl 6", 20 ], [ - "Perl 6", + "Perl 5", 20 ] ], @@ -339,6 +339,7 @@ "name" : "Jaldhar H. Vyas" }, { + "id" : "Ruben Westerberg", "data" : [ [ "Perl 6", @@ -349,24 +350,24 @@ 17 ] ], - "id" : "Ruben Westerberg", "name" : "Ruben Westerberg" }, { + "name" : "Adam Russell", "id" : "Adam Russell", "data" : [ - [ - "Perl 5", - 20 - ], [ "Blog", 10 + ], + [ + "Perl 5", + 20 ] - ], - "name" : "Adam Russell" + ] }, { + "id" : "Arne Sommer", "data" : [ [ "Perl 6", @@ -377,17 +378,11 @@ 10 ] ], - "id" : "Arne Sommer", "name" : "Arne Sommer" }, { - "name" : "Simon Proctor", "id" : "Simon Proctor", "data" : [ - [ - "Perl 6", - 18 - ], [ "Perl 5", 4 @@ -395,57 +390,62 @@ [ "Blog", 6 + ], + [ + "Perl 6", + 18 ] - ] + ], + "name" : "Simon Proctor" }, { "name" : "Kian-Meng Ang", "id" : "Kian-Meng Ang", "data" : [ - [ - "Blog", - 10 - ], [ "Perl 5", 17 + ], + [ + "Blog", + 10 ] ] }, { - "name" : "Gustavo Chaves", + "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals", "data" : [ [ "Perl 5", - 19 + 6 + ], + [ + "Perl 6", + 12 ], [ "Blog", - 4 + 6 ] - ], - "id" : "Gustavo Chaves" + ] }, { - "id" : "Jo Christian Oterhals", + "id" : "Gustavo Chaves", "data" : [ [ - "Perl 6", - 11 + "Perl 5", + 19 ], [ "Blog", - 6 - ], - [ - "Perl 5", - 6 + 4 ] ], - "name" : "Jo Christian Oterhals" + "name" : "Gustavo Chaves" }, { - "name" : "Dr James A. Smith", + "id" : "Dr James A. Smith", "data" : [ [ "Perl 5", @@ -456,41 +456,41 @@ 10 ] ], - "id" : "Dr James A. Smith" + "name" : "Dr James A. Smith" }, { "name" : "Francis Whittle", + "id" : "Francis Whittle", "data" : [ - [ - "Perl 6", - 16 - ], [ "Blog", 6 + ], + [ + "Perl 6", + 16 ] - ], - "id" : "Francis Whittle" + ] }, { + "name" : "Andrezgz", "id" : "Andrezgz", "data" : [ [ "Perl 5", 21 ] - ], - "name" : "Andrezgz" + ] }, { + "name" : "Athanasius", + "id" : "Athanasius", "data" : [ [ "Perl 5", 20 ] - ], - "id" : "Athanasius", - "name" : "Athanasius" + ] }, { "name" : "E. Choroba", @@ -507,41 +507,41 @@ ] }, { - "name" : "Dave Jacoby", "data" : [ [ - "Blog", + "Perl 5", 9 ], [ - "Perl 5", + "Blog", 9 ] ], - "id" : "Dave Jacoby" + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { + "name" : "Nick Logan", "id" : "Nick Logan", "data" : [ [ - "Perl 5", + "Perl 6", 8 ], [ - "Perl 6", + "Perl 5", 8 ] - ], - "name" : "Nick Logan" + ] }, { + "id" : "Daniel Mantovani", "data" : [ [ "Perl 5", 15 ] ], - "id" : "Daniel Mantovani", "name" : "Daniel Mantovani" }, { @@ -562,29 +562,29 @@ "name" : "Mark Senn", "id" : "Mark Senn", "data" : [ - [ - "Perl 6", - 10 - ], [ "Blog", 3 + ], + [ + "Perl 6", + 10 ] ] }, { + "name" : "Yozen Hernandez", "data" : [ - [ - "Perl 5", - 8 - ], [ "Blog", 3 + ], + [ + "Perl 5", + 8 ] ], - "id" : "Yozen Hernandez", - "name" : "Yozen Hernandez" + "id" : "Yozen Hernandez" }, { "id" : "Doug Schrag", @@ -597,24 +597,24 @@ "name" : "Doug Schrag" }, { + "name" : "Duncan C. White", + "id" : "Duncan C. White", "data" : [ [ "Perl 5", 10 ] - ], - "id" : "Duncan C. White", - "name" : "Duncan C. White" + ] }, { - "name" : "Steven Wilson", "id" : "Steven Wilson", "data" : [ [ "Perl 5", 10 ] - ] + ], + "name" : "Steven Wilson" }, { "data" : [ @@ -638,16 +638,17 @@ }, { "name" : "Maxim Nechaev", - "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 9 ] - ] + ], + "id" : "Maxim Nechaev" }, { "name" : "Robert Gratza", + "id" : "Robert Gratza", "data" : [ [ "Perl 6", @@ -657,8 +658,7 @@ "Perl 5", 2 ] - ], - "id" : "Robert Gratza" + ] }, { "name" : "John Barrett", @@ -673,10 +673,6 @@ { "name" : "Khalid", "data" : [ - [ - "Blog", - 1 - ], [ "Perl 5", 4 @@ -684,6 +680,10 @@ [ "Perl 6", 2 + ], + [ + "Blog", + 1 ] ], "id" : "Khalid" @@ -699,35 +699,35 @@ "id" : "Ozzy" }, { - "name" : "Kivanc Yazan", - "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 6 ] - ] + ], + "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan" }, { "name" : "Maxim Kolodyazhny", + "id" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 6 ] - ], - "id" : "Maxim Kolodyazhny" + ] }, { "name" : "Philippe Bruhat", "data" : [ - [ - "Blog", - 2 - ], [ "Perl 5", 4 + ], + [ + "Blog", + 2 ] ], "id" : "Philippe Bruhat" @@ -743,102 +743,102 @@ ] }, { - "id" : "Arpad Toth", "data" : [ [ "Perl 5", 5 ] ], + "id" : "Arpad Toth", "name" : "Arpad Toth" }, { - "name" : "Steve Rogerson", "id" : "Steve Rogerson", "data" : [ - [ - "Perl 6", - 2 - ], [ "Perl 5", 3 + ], + [ + "Perl 6", + 2 ] - ] + ], + "name" : "Steve Rogerson" }, { - "id" : "Veesh Goldman", "data" : [ [ "Perl 5", 5 ] ], + "id" : "Veesh Goldman", "name" : "Veesh Goldman" }, { - "name" : "Alex Daniel", + "id" : "Alex Daniel", "data" : [ [ "Perl 6", 4 ] ], - "id" : "Alex Daniel" + "name" : "Alex Daniel" }, { + "name" : "Bob Kleemann", "id" : "Bob Kleemann", "data" : [ [ "Perl 5", 4 ] - ], - "name" : "Bob Kleemann" + ] }, { - "id" : "Chenyf", "data" : [ [ "Perl 6", 4 ] ], + "id" : "Chenyf", "name" : "Chenyf" }, { - "name" : "David Kayal", - "id" : "David Kayal", "data" : [ [ "Perl 5", 4 ] - ] + ], + "id" : "David Kayal", + "name" : "David Kayal" }, { - "id" : "Feng Chang", "data" : [ - [ - "Perl 6", - 3 - ], [ "Perl 5", 1 + ], + [ + "Perl 6", + 3 ] ], + "id" : "Feng Chang", "name" : "Feng Chang" }, { + "name" : "Finley", "id" : "Finley", "data" : [ [ "Perl 6", 4 ] - ], - "name" : "Finley" + ] }, { "data" : [ @@ -851,53 +851,53 @@ "name" : "Jaime Corchado" }, { - "name" : "Luis F. Uceta", - "id" : "Luis F. Uceta", "data" : [ [ "Perl 6", 4 ] - ] + ], + "id" : "Luis F. Uceta", + "name" : "Luis F. Uceta" }, { - "name" : "Matt Latusek", - "id" : "Matt Latusek", "data" : [ [ "Perl 5", 4 ] - ] + ], + "id" : "Matt Latusek", + "name" : "Matt Latusek" }, { + "id" : "Neil Bowers", "data" : [ [ "Perl 5", 4 ] ], - "id" : "Neil Bowers", "name" : "Neil Bowers" }, { - "name" : "Pete Houston", + "id" : "Pete Houston", "data" : [ [ "Perl 5", 4 ] ], - "id" : "Pete Houston" + "name" : "Pete Houston" }, { - "id" : "Simon Reinhardt", "data" : [ [ "Perl 5", 4 ] ], + "id" : "Simon Reinhardt", "name" : "Simon Reinhardt" } ] diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index 99caaa8a79..63895e1042 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -4,18 +4,62 @@ "stacking" : "percent" } }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" + } }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-09 04:28:33 GMT" + "xAxis" : { + "categories" : [ + "Aaron Sherman", + "Abigail", + "Adam Russell", + "Ailbhe Tweedie", + "Alex Daniel", + "Alexander Karelas", + "Alexey Melezhik", + "Alicia Bielsa", + "Andrezgz", + "Antonio Gamiz", + "Arne Sommer", + "Arpad Toth", + "Athanasius", + "Aubrey Quarcoo", + "Bill Palmer", + "Bob Kleemann", + "Clive Holloway", + "Daniel Mantovani", + "Daniel Mita", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Denis Yurashku", + "Donald Hunter", + "Doug Schrag", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "Feng Chang", + "Finley" + ] }, "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" + "pointFormat" : "{series.name}: {point.y}
", + "shared" : 1 + }, + "chart" : { + "type" : "column" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-09 04:39:24 GMT" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" }, "series" : [ { + "name" : "Perl 5", "data" : [ 0, 2, @@ -47,10 +91,10 @@ 2, 1, 0 - ], - "name" : "Perl 5" + ] }, { + "name" : "Perl 6", "data" : [ 2, 0, @@ -82,51 +126,7 @@ 0, 3, 4 - ], - "name" : "Perl 6" - } - ], - "chart" : { - "type" : "column" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" + ] } - }, - "xAxis" : { - "categories" : [ - "Aaron Sherman", - "Abigail", - "Adam Russell", - "Ailbhe Tweedie", - "Alex Daniel", - "Alexander Karelas", - "Alexey Melezhik", - "Alicia Bielsa", - "Andrezgz", - "Antonio Gamiz", - "Arne Sommer", - "Arpad Toth", - "Athanasius", - "Aubrey Quarcoo", - "Bill Palmer", - "Bob Kleemann", - "Clive Holloway", - "Daniel Mantovani", - "Daniel Mita", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Denis Yurashku", - "Donald Hunter", - "Doug Schrag", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Feng Chang", - "Finley" - ] - } + ] } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 57e45002a9..4edbb31a0b 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -4,21 +4,62 @@ "stacking" : "percent" } }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-09 04:28:33 GMT" + "xAxis" : { + "categories" : [ + "Francis Whittle", + "Fred Zinn", + "Freddie B", + "Guillermo Ramos", + "Gustavo Chaves", + "Jacques Guinnebault", + "Jaime Corchado", + "Jaldhar H. Vyas", + "Dr James A. Smith", + "Jeff", + "Jeremy Carman", + "Jim Bacon", + "JJ Merelo", + "Jo Christian Oterhals", + "Joelle Maslak", + "John Barrett", + "Juan Caballero", + "Kevin Colyer", + "Khalid", + "Kian-Meng Ang", + "Kivanc Yazan", + "Lars Balker", + "Laurent Rosenfeld", + "Magnus Woldrich", + "Mano Chandar", + "Mark Senn", + "Martin Barth", + "Martin Mugeni", + "Matt Latusek", + "Matthew O. Persico" + ] }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 + }, + "chart" : { + "type" : "column" }, "tooltip" : { "pointFormat" : "{series.name}: {point.y}
", "shared" : 1 }, - "chart" : { - "type" : "column" + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-09 04:39:24 GMT" }, "series" : [ { + "name" : "Perl 5", "data" : [ 0, 2, @@ -50,8 +91,7 @@ 0, 4, 0 - ], - "name" : "Perl 5" + ] }, { "data" : [ @@ -68,7 +108,7 @@ 1, 0, 1, - 11, + 12, 26, 0, 0, @@ -88,45 +128,5 @@ ], "name" : "Perl 6" } - ], - "xAxis" : { - "categories" : [ - "Francis Whittle", - "Fred Zinn", - "Freddie B", - "Guillermo Ramos", - "Gustavo Chaves", - "Jacques Guinnebault", - "Jaime Corchado", - "Jaldhar H. Vyas", - "Dr James A. Smith", - "Jeff", - "Jeremy Carman", - "Jim Bacon", - "JJ Merelo", - "Jo Christian Oterhals", - "Joelle Maslak", - "John Barrett", - "Juan Caballero", - "Kevin Colyer", - "Khalid", - "Kian-Meng Ang", - "Kivanc Yazan", - "Lars Balker", - "Laurent Rosenfeld", - "Magnus Woldrich", - "Mano Chandar", - "Mark Senn", - "Martin Barth", - "Martin Mugeni", - "Matt Latusek", - "Matthew O. Persico" - ] - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - } + ] } diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index b254773ecb..d77696383a 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,20 +1,11 @@ { + "chart" : { + "type" : "column" + }, "tooltip" : { "shared" : 1, "pointFormat" : "{series.name}: {point.y}
" }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-09 04:28:33 GMT" - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, "xAxis" : { "categories" : [ "Maxim Kolodyazhny", @@ -49,8 +40,16 @@ "Yary H" ] }, - "chart" : { - "type" : "column" + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } }, "series" : [ { @@ -124,9 +123,10 @@ ] } ], - "plotOptions" : { - "column" : { - "stacking" : "percent" - } + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-09 04:39:24 GMT" } } diff --git a/stats/pwc-summary-91-120.json b/stats/pwc-summary-91-120.json index 313dbc7883..8810c0ad77 100644 --- a/stats/pwc-summary-91-120.json +++ b/stats/pwc-summary-91-120.json @@ -1,31 +1,16 @@ { - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "subtitle" : { + "text" : "[Champions: 1] Last updated at 2019-06-09 04:39:24 GMT" }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "subtitle" : { - "text" : "[Champions: 1] Last updated at 2019-06-09 04:28:33 GMT" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, - "xAxis" : { - "categories" : [ - "Yozen Hernandez" - ] - }, "series" : [ { - "name" : "Perl 5", "data" : [ 8 - ] + ], + "name" : "Perl 5" }, { "name" : "Perl 6", @@ -34,12 +19,27 @@ ] } ], - "chart" : { - "type" : "column" + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 + }, + "xAxis" : { + "categories" : [ + "Yozen Hernandez" + ] }, "plotOptions" : { "column" : { "stacking" : "percent" } + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "chart" : { + "type" : "column" } } diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index ce3bf51f67..e2898d3c2b 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,120 +1,4 @@ { - "subtitle" : { - "text" : "[Champions: 91] Last updated at 2019-06-09 04:28:32 GMT" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, - "xAxis" : { - "categories" : [ - "Aaron Sherman", - "Abigail", - "Adam Russell", - "Ailbhe Tweedie", - "Alex Daniel", - "Alexander Karelas", - "Alexey Melezhik", - "Alicia Bielsa", - "Andrezgz", - "Antonio Gamiz", - "Arne Sommer", - "Arpad Toth", - "Athanasius", - "Aubrey Quarcoo", - "Bill Palmer", - "Bob Kleemann", - "Clive Holloway", - "Daniel Mantovani", - "Daniel Mita", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Denis Yurashku", - "Donald Hunter", - "Doug Schrag", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Feng Chang", - "Finley", - "Francis Whittle", - "Fred Zinn", - "Freddie B", - "Guillermo Ramos", - "Gustavo Chaves", - "Jacques Guinnebault", - "Jaime Corchado", - "Jaldhar H. Vyas", - "Dr James A. Smith", - "Jeff", - "Jeremy Carman", - "Jim Bacon", - "JJ Merelo", - "Jo Christian Oterhals", - "Joelle Maslak", - "John Barrett", - "Juan Caballero", - "Kevin Colyer", - "Khalid", - "Kian-Meng Ang", - "Kivanc Yazan", - "Lars Balker", - "Laurent Rosenfeld", - "Magnus Woldrich", - "Mano Chandar", - "Mark Senn", - "Martin Barth", - "Martin Mugeni", - "Matt Latusek", - "Matthew O. Persico", - "Maxim Kolodyazhny", - "Maxim Nechaev", - "Michael Schaap", - "Neil Bowers", - "Nick Logan", - "Chenyf", - "Oleksii Tsvietnov", - "Ozzy", - "Pavel Jurca", - "Pavel Starikov", - "Pete Houston", - "Pete Sergeant", - "Philippe Bruhat", - "Prajith P", - "Robert Gratza", - "Ruben Westerberg", - "Sean Meininger", - "Sergio Iglesias", - "Simon Proctor", - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Tiago Stock", - "Tim Smith", - "Tore Andersson", - "Luis F. Uceta", - "Veesh Goldman", - "William Gilmore", - "Yar