From 0129b707f95082868e7e0d8d722d16a15d3cb28f Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Wed, 19 Jun 2019 15:11:14 +0100 Subject: - Added solutions by Guillermo Ramos. --- challenge-013/guillermo-ramos/perl5/ch-1.pl | 24 + challenge-013/guillermo-ramos/perl5/ch-2.pl | 38 ++ challenge-013/guillermo-ramos/perl5/ch-3.pl | 88 +++ stats/pwc-current.json | 209 ++++--- stats/pwc-language-breakdown-summary.json | 74 +-- stats/pwc-language-breakdown.json | 140 ++--- stats/pwc-leaders.json | 892 ++++++++++++++-------------- stats/pwc-summary-1-30.json | 102 ++-- stats/pwc-summary-31-60.json | 48 +- stats/pwc-summary-61-90.json | 110 ++-- stats/pwc-summary-91-120.json | 50 +- stats/pwc-summary.json | 52 +- 12 files changed, 996 insertions(+), 831 deletions(-) create mode 100644 challenge-013/guillermo-ramos/perl5/ch-1.pl create mode 100644 challenge-013/guillermo-ramos/perl5/ch-2.pl create mode 100644 challenge-013/guillermo-ramos/perl5/ch-3.pl diff --git a/challenge-013/guillermo-ramos/perl5/ch-1.pl b/challenge-013/guillermo-ramos/perl5/ch-1.pl new file mode 100644 index 0000000000..4a436cb6f8 --- /dev/null +++ b/challenge-013/guillermo-ramos/perl5/ch-1.pl @@ -0,0 +1,24 @@ +#!/usr/bin/env perl +# +# Write a script to print the date of last Friday of every month of a given year +################################################################################ + +use strict; +use warnings; + +use Time::Local qw; + +die "Usage: $0 \n" unless @ARGV == 1; +my $year = shift; + +my %last_dom = ( + 0 => 31, 1 => 28, 2 => 31, 3 => 30, 4 => 31, 5 => 30, + 6 => 31, 7 => 31, 8 => 30, 9 => 31, 10 => 30, 11 => 31 + ); + +foreach my $month (0..11) { + my $last_day = $last_dom{$month}; + my $last_wday = (localtime timelocal(0, 0, 0, $last_day, $month, $year))[6]; + my $last_friday = $last_day - $last_wday + ($last_wday >= 5 ? 5 : -2); + printf "%d/%02d/%d\n", $year, $month+1, $last_friday; +} diff --git a/challenge-013/guillermo-ramos/perl5/ch-2.pl b/challenge-013/guillermo-ramos/perl5/ch-2.pl new file mode 100644 index 0000000000..89091aeb32 --- /dev/null +++ b/challenge-013/guillermo-ramos/perl5/ch-2.pl @@ -0,0 +1,38 @@ +#!/usr/bin/env perl +# +# Write a script to demonstrate Mutually Recursive methods. Two methods are +# mutually recursive if the first method calls the second and the second calls +# first in turn. Using the mutually recursive methods, generate Hofstadter +# Female and Male sequences. +# (https://en.wikipedia.org/wiki/Hofstadter_sequence#Hofstadter_Female_and_Male_sequences) +################################################################################ + +use strict; +use warnings; + +use Memoize qw; + +# Cache the results of previous computations +memoize('M'); +memoize('F'); + +sub M { + my $n = shift; + return $n == 0 + ? 0 + : $n - F(M($n-1)); +} + +sub F { + my $n = shift; + return $n == 0 + ? 1 + : $n - M(F($n-1)); +} + +die "Usage: $0 \n" unless @ARGV == 1; + +print "M\tF\n-\t-\n"; +foreach my $n (0 .. shift) { + printf "%d\t%d\n", M($n), F($n); +} diff --git a/challenge-013/guillermo-ramos/perl5/ch-3.pl b/challenge-013/guillermo-ramos/perl5/ch-3.pl new file mode 100644 index 0000000000..5c9be21021 --- /dev/null +++ b/challenge-013/guillermo-ramos/perl5/ch-3.pl @@ -0,0 +1,88 @@ +#!/usr/bin/env perl +# +# Find the details of a given word using the Words API +# (https://www.wordsapi.com/docs/) +# +# Dependencies: HTTP-Message, LWP, JSON +################################################################################ + +use strict; +use warnings; +use open ':std', ':encoding(UTF-8)'; # To correctly display pronunciations + +use HTTP::Request; +use LWP::UserAgent; +use JSON qw; + +# API key read from environment +my $WORDSAPI_KEY = $ENV{'WORDSAPI_KEY'} or die "WORDSAPI_KEY not defined"; +my $WORD = shift or die "Usage: $0 \n"; + +my $ua = LWP::UserAgent->new; +$ua->agent("gramos's script for perlweeklychallenge.org"); +my $uri = "https://wordsapiv1.p.mashape.com/words/$WORD"; +my @headers = ("X-Mashape-Key", $WORDSAPI_KEY); +my $response = $ua->request(HTTP::Request->new("GET", $uri, \@headers)); + +# Check for errors in API request +if ($response->is_error()) { + if ($response->code == 404) { + die "Word '$WORD' not found\n"; + } else { + die "Unknown error: " . $response->message; + } +} + +my $json_resp = decode_json $response->content; + +my $syllables = $json_resp->{'syllables'}; +if ($syllables && $syllables->{'count'} > 1) { + printf "Word: '$WORD' (%s)\n", join("-", @{$syllables->{'list'}}); +} else { + print "Word: '$WORD'\n"; +} + +my $pronunciation = $json_resp->{'pronunciation'}; +if (ref($pronunciation) eq "HASH") { + my %pronunciations = %{$pronunciation}; + if ($pronunciations{'all'}) { + print "Pronunciation: /$pronunciations{'all'}/\n"; + } else { + print "Pronunciation:\n"; + foreach my $k (keys %pronunciations) { + print " as $k: /$pronunciations{$k}/\n"; + } + } +} elsif ($pronunciation) { + # This case is not documented, thanks WordsAPI. + print "Pronunciation: /$pronunciation/\n"; +} + +my $frequency = $json_resp->{'frequency'}; +if ($frequency) { + print "Frequency: "; + print $frequency > 5 ? "frequently used" + : $frequency > 3 ? "occasionally used" + : $frequency > 1 ? "rarely used" + : "never used"; + print "\n"; +} + +my $results = $json_resp->{'results'}; +if ($results) { + print "Definitions:\n"; + foreach my $res (@$results) { + printf " - (%s) %s\n", $res->{'partOfSpeech'}, $res->{'definition'}; + my $synonyms = $res->{'synonyms'}; + if ($synonyms) { + printf " synonyms: %s\n", join(", ", @$synonyms); + } + my $examples = $res->{'examples'}; + if ($examples) { + foreach my $example (@$examples) { + print qq' "$example"\n'; + } + } + print "\n"; + } +} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 5c40b026c6..7b12a894aa 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,118 +1,83 @@ { - "xAxis" : { - "type" : "category" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "subtitle" : { + "text" : "[Champions: 11] Last updated at 2019-06-19 14:10:54 GMT" }, "chart" : { "type" : "column" }, - "subtitle" : { - "text" : "[Champions: 10] Last updated at 2019-06-19 14:05:52 GMT" + "title" : { + "text" : "Perl Weekly Challenge - 013" }, "tooltip" : { - "followPointer" : 1, "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
" + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1 }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } } }, - "title" : { - "text" : "Perl Weekly Challenge - 013" + "xAxis" : { + "type" : "category" + }, + "legend" : { + "enabled" : 0 }, - "series" : [ - { - "data" : [ - { - "drilldown" : "Andrezgz", - "name" : "Andrezgz", - "y" : 2 - }, - { - "drilldown" : "Dave Jacoby", - "y" : 2, - "name" : "Dave Jacoby" - }, - { - "drilldown" : "Gustavo Chaves", - "y" : 2, - "name" : "Gustavo Chaves" - }, - { - "drilldown" : "Joelle Maslak", - "name" : "Joelle Maslak", - "y" : 4 - }, - { - "y" : 2, - "name" : "Kevin Colyer", - "drilldown" : "Kevin Colyer" - }, - { - "name" : "Laurent Rosenfeld", - "y" : 5, - "drilldown" : "Laurent Rosenfeld" - }, - { - "drilldown" : "Ozzy", - "name" : "Ozzy", - "y" : 1 - }, - { - "drilldown" : "Pete Houston", - "name" : "Pete Houston", - "y" : 1 - }, - { - "drilldown" : "Simon Proctor", - "y" : 3, - "name" : "Simon Proctor" - }, - { - "name" : "Steven Wilson", - "y" : 2, - "drilldown" : "Steven Wilson" - } - ], - "name" : "Perl Weekly Challenge - 013", - "colorByPoint" : 1 - } - ], "drilldown" : { "series" : [ { - "id" : "Andrezgz", "data" : [ [ "Perl 5", 2 ] ], + "id" : "Andrezgz", "name" : "Andrezgz" }, { - "name" : "Dave Jacoby", - "id" : "Dave Jacoby", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { "data" : [ [ "Perl 5", - 2 + 3 ] ], + "id" : "Guillermo Ramos", + "name" : "Guillermo Ramos" + }, + { + "name" : "Gustavo Chaves", "id" : "Gustavo Chaves", - "name" : "Gustavo Chaves" + "data" : [ + [ + "Perl 5", + 2 + ] + ] }, { "name" : "Joelle Maslak", + "id" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -122,8 +87,7 @@ "Perl 6", 2 ] - ], - "id" : "Joelle Maslak" + ] }, { "data" : [ @@ -132,11 +96,10 @@ 2 ] ], - "id" : "Kevin Colyer", - "name" : "Kevin Colyer" + "name" : "Kevin Colyer", + "id" : "Kevin Colyer" }, { - "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", @@ -151,30 +114,30 @@ 1 ] ], - "id" : "Laurent Rosenfeld" + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" }, { - "id" : "Ozzy", "data" : [ [ "Perl 6", 1 ] ], + "id" : "Ozzy", "name" : "Ozzy" }, { "id" : "Pete Houston", + "name" : "Pete Houston", "data" : [ [ "Perl 5", 1 ] - ], - "name" : "Pete Houston" + ] }, { - "name" : "Simon Proctor", "data" : [ [ "Perl 6", @@ -185,30 +148,82 @@ 1 ] ], + "name" : "Simon Proctor", "id" : "Simon Proctor" }, { - "id" : "Steven Wilson", "data" : [ [ "Perl 5", 2 ] ], + "id" : "Steven Wilson", "name" : "Steven Wilson" } ] }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 + "series" : [ + { + "data" : [ + { + "drilldown" : "Andrezgz", + "name" : "Andrezgz", + "y" : 2 + }, + { + "name" : "Dave Jacoby", + "y" : 2, + "drilldown" : "Dave Jacoby" + }, + { + "drilldown" : "Guillermo Ramos", + "y" : 3, + "name" : "Guillermo Ramos" + }, + { + "y" : 2, + "name" : "Gustavo Chaves", + "drilldown" : "Gustavo Chaves" + }, + { + "drilldown" : "Joelle Maslak", + "y" : 4, + "name" : "Joelle Maslak" + }, + { + "y" : 2, + "name" : "Kevin Colyer", + "drilldown" : "Kevin Colyer" + }, + { + "drilldown" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", + "y" : 5 + }, + { + "drilldown" : "Ozzy", + "y" : 1, + "name" : "Ozzy" + }, + { + "y" : 1, + "name" : "Pete Houston", + "drilldown" : "Pete Houston" + }, + { + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor", + "y" : 3 + }, + { + "drilldown" : "Steven Wilson", + "name" : "Steven Wilson", + "y" : 2 + } + ], + "colorByPoint" : 1, + "name" : "Perl Weekly Challenge - 013" } - }, - "legend" : { - "enabled" : 0 - } + ] } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 298f2eb163..3383e0259f 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,40 +1,7 @@ { - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "Last updated at 2019-06-19 14:05:58 GMT" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, - "yAxis" : { - "title" : { - "text" : null - }, - "min" : 0 - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" - }, - "legend" : { - "enabled" : "false" - }, "series" : [ { "name" : "Contributions", - "dataLabels" : { - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "color" : "#FFFFFF", - "format" : "{point.y:.0f}", - "rotation" : -90, - "align" : "right", - "y" : 10, - "enabled" : "true" - }, "data" : [ [ "Blog", @@ -42,22 +9,55 @@ ], [ "Perl 5", - 503 + 506 ], [ "Perl 6", 298 ] - ] + ], + "dataLabels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "format" : "{point.y:.0f}", + "y" : 10, + "rotation" : -90, + "align" : "right", + "color" : "#FFFFFF", + "enabled" : "true" + } } ], + "chart" : { + "type" : "column" + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" + }, "xAxis" : { "type" : "category", "labels" : { "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" } } + }, + "subtitle" : { + "text" : "Last updated at 2019-06-19 14:11:07 GMT" + }, + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 + }, + "legend" : { + "enabled" : "false" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index d25f8f5c14..f3a8185604 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,17 +1,48 @@ { + "tooltip" : { + "headerFormat" : "", + "followPointer" : "true", + "pointFormat" : "Challenge {point.name}: {point.y:f}
" + }, + "legend" : { + "enabled" : "false" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-19 14:11:07 GMT" + }, + "xAxis" : { + "type" : "category" + }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, "series" : [ { - "name" : "Perl Weekly Challenge Languages", + "colorByPoint" : "true", "data" : [ { "name" : "#001", - "drilldown" : "001", - "y" : 123 + "y" : 123, + "drilldown" : "001" }, { - "name" : "#002", "drilldown" : "002", - "y" : 104 + "y" : 104, + "name" : "#002" }, { "drilldown" : "003", @@ -19,14 +50,14 @@ "name" : "#003" }, { - "name" : "#004", "drilldown" : "004", - "y" : 84 + "y" : 84, + "name" : "#004" }, { - "drilldown" : "005", + "name" : "#005", "y" : 66, - "name" : "#005" + "drilldown" : "005" }, { "name" : "#006", @@ -39,18 +70,18 @@ "name" : "#007" }, { - "y" : 67, + "name" : "#008", "drilldown" : "008", - "name" : "#008" + "y" : 67 }, { "name" : "#009", - "drilldown" : "009", - "y" : 62 + "y" : 62, + "drilldown" : "009" }, { - "y" : 58, "drilldown" : "010", + "y" : 58, "name" : "#010" }, { @@ -59,48 +90,27 @@ "y" : 75 }, { - "y" : 80, + "name" : "#012", "drilldown" : "012", - "name" : "#012" + "y" : 80 }, { - "y" : 24, - "drilldown" : "013", - "name" : "#013" + "name" : "#013", + "y" : 27, + "drilldown" : "013" } ], - "colorByPoint" : "true" + "name" : "Perl Weekly Challenge Languages" } ], - "xAxis" : { - "type" : "category" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "tooltip" : { - "headerFormat" : "", - "followPointer" : "true", - "pointFormat" : "Challenge {point.name}: {point.y:f}
" - }, - "legend" : { - "enabled" : "false" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, "chart" : { "type" : "column" }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-19 14:05:58 GMT" - }, "drilldown" : { "series" : [ { "id" : "001", + "name" : "001", "data" : [ [ "Perl 5", @@ -114,8 +124,7 @@ "Blog", 10 ] - ], - "name" : "001" + ] }, { "data" : [ @@ -132,12 +141,10 @@ 9 ] ], - "id" : "002", - "name" : "002" + "name" : "002", + "id" : "002" }, { - "name" : "003", - "id" : "003", "data" : [ [ "Perl 5", @@ -151,7 +158,9 @@ "Blog", 8 ] - ] + ], + "name" : "003", + "id" : "003" }, { "name" : "004", @@ -190,7 +199,6 @@ "id" : "005" }, { - "name" : "006", "data" : [ [ "Perl 5", @@ -205,10 +213,10 @@ 6 ] ], + "name" : "006", "id" : "006" }, { - "name" : "007", "id" : "007", "data" : [ [ @@ -223,10 +231,10 @@ "Blog", 8 ] - ] + ], + "name" : "007" }, { - "id" : "008", "data" : [ [ "Perl 5", @@ -241,11 +249,12 @@ 9 ] ], - "name" : "008" + "name" : "008", + "id" : "008" }, { - "name" : "009", "id" : "009", + "name" : "009", "data" : [ [ "Perl 5", @@ -262,6 +271,8 @@ ] }, { + "id" : "010", + "name" : "010", "data" : [ [ "Perl 5", @@ -275,9 +286,7 @@ "Blog", 9 ] - ], - "id" : "010", - "name" : "010" + ] }, { "id" : "011", @@ -298,6 +307,7 @@ "name" : "011" }, { + "name" : "012", "data" : [ [ "Perl 5", @@ -312,15 +322,14 @@ 9 ] ], - "id" : "012", - "name" : "012" + "id" : "012" }, { "id" : "013", "data" : [ [ "Perl 5", - 13 + 16 ], [ "Perl 6", @@ -334,14 +343,5 @@ "name" : "013" } ] - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index bba9c18385..aefca66f69 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,55 +1,347 @@ { + "yAxis" : { + "title" : { + "text" : "Total Score" + } + }, + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category" + }, + "series" : [ + { + "colorByPoint" : "true", + "data" : [ + { + "name" : "#1: Joelle Maslak", + "drilldown" : "Joelle Maslak", + "y" : 132 + }, + { + "drilldown" : "Laurent Rosenfeld", + "y" : 132, + "name" : "#2: Laurent Rosenfeld" + }, + { + "drilldown" : "Jaldhar H. Vyas", + "y" : 96, + "name" : "#3: Jaldhar H. Vyas" + }, + { + "y" : 84, + "drilldown" : "Ruben Westerberg", + "name" : "#4: Ruben Westerberg" + }, + { + "y" : 72, + "drilldown" : "Adam Russell", + "name" : "#5: Adam Russell" + }, + { + "name" : "#6: Simon Proctor", + "y" : 66, + "drilldown" : "Simon Proctor" + }, + { + "name" : "#7: Arne Sommer", + "y" : 64, + "drilldown" : "Arne Sommer" + }, + { + "y" : 64, + "drilldown" : "Kian-Meng Ang", + "name" : "#8: Kian-Meng Ang" + }, + { + "name" : "#9: Athanasius", + "y" : 56, + "drilldown" : "Athanasius" + }, + { + "name" : "#10: Gustavo Chaves", + "y" : 54, + "drilldown" : "Gustavo Chaves" + }, + { + "drilldown" : "Andrezgz", + "y" : 50, + "name" : "#11: Andrezgz" + }, + { + "name" : "#12: Francis Whittle", + "y" : 50, + "drilldown" : "Francis Whittle" + }, + { + "name" : "#13: Dave Jacoby", + "drilldown" : "Dave Jacoby", + "y" : 48 + }, + { + "y" : 48, + "drilldown" : "E. Choroba", + "name" : "#14: E. Choroba" + }, + { + "y" : 48, + "drilldown" : "Jo Christian Oterhals", + "name" : "#15: Jo Christian Oterhals" + }, + { + "name" : "#16: Dr James A. Smith", + "drilldown" : "Dr James A. Smith", + "y" : 44 + }, + { + "name" : "#17: Daniel Mantovani", + "drilldown" : "Daniel Mantovani", + "y" : 36 + }, + { + "y" : 36, + "drilldown" : "Duncan C. White", + "name" : "#18: Duncan C. White" + }, + { + "name" : "#19: Mark Senn", + "drilldown" : "Mark Senn", + "y" : 32 + }, + { + "y" : 32, + "drilldown" : "Nick Logan", + "name" : "#20: Nick Logan" + }, + { + "y" : 30, + "drilldown" : "Steven Wilson", + "name" : "#21: Steven Wilson" + }, + { + "drilldown" : "Lars Balker", + "y" : 28, + "name" : "#22: Lars Balker" + }, + { + "name" : "#23: Yozen Hernandez", + "y" : 28, + "drilldown" : "Yozen Hernandez" + }, + { + "name" : "#24: Guillermo Ramos", + "y" : 24, + "drilldown" : "Guillermo Ramos" + }, + { + "drilldown" : "Ozzy", + "y" : 24, + "name" : "#25: Ozzy" + }, + { + "name" : "#26: Alicia Bielsa", + "drilldown" : "Alicia Bielsa", + "y" : 22 + }, + { + "name" : "#27: Feng Chang", + "y" : 22, + "drilldown" : "Feng Chang" + }, + { + "drilldown" : "Doug Schrag", + "y" : 20, + "name" : "#28: Doug Schrag" + }, + { + "drilldown" : "Maxim Nechaev", + "y" : 20, + "name" : "#29: Maxim Nechaev" + }, + { + "name" : "#30: Robert Gratza", + "drilldown" : "Robert Gratza", + "y" : 16 + }, + { + "drilldown" : "John Barrett", + "y" : 14, + "name" : "#31: John Barrett" + }, + { + "name" : "#32: Khalid", + "y" : 14, + "drilldown" : "Khalid" + }, + { + "name" : "#33: Jaime Corchado", + "y" : 12, + "drilldown" : "Jaime Corchado" + }, + { + "name" : "#34: Kevin Colyer", + "drilldown" : "Kevin Colyer", + "y" : 12 + }, + { + "y" : 12, + "drilldown" : "Kivanc Yazan", + "name" : "#35: Kivanc Yazan" + }, + { + "name" : "#36: Maxim Kolodyazhny", + "drilldown" : "Maxim Kolodyazhny", + "y" : 12 + }, + { + "y" : 12, + "drilldown" : "Philippe Bruhat", + "name" : "#37: Philippe Bruhat" + }, + { + "name" : "#38: Sergio Iglesias", + "y" : 12, + "drilldown" : "Sergio Iglesias" + }, + { + "name" : "#39: Arpad Toth", + "y" : 10, + "drilldown" : "Arpad Toth" + }, + { + "name" : "#40: Pete Houston", + "drilldown" : "Pete Houston", + "y" : 10 + }, + { + "y" : 10, + "drilldown" : "Steve Rogerson", + "name" : "#41: Steve Rogerson" + }, + { + "drilldown" : "Veesh Goldman", + "y" : 10, + "name" : "#42: Veesh Goldman" + }, + { + "drilldown" : "Aaron Sherman", + "y" : 8, + "name" : "#43: Aaron Sherman" + }, + { + "drilldown" : "Alex Daniel", + "y" : 8, + "name" : "#44: Alex Daniel" + }, + { + "y" : 8, + "drilldown" : "Bob Kleemann", + "name" : "#45: Bob Kleemann" + }, + { + "y" : 8, + "drilldown" : "Chenyf", + "name" : "#46: Chenyf" + }, + { + "name" : "#47: David Kayal", + "drilldown" : "David Kayal", + "y" : 8 + }, + { + "y" : 8, + "drilldown" : "Finley", + "name" : "#48: Finley" + }, + { + "drilldown" : "Luis F. Uceta", + "y" : 8, + "name" : "#49: Luis F. Uceta" + }, + { + "drilldown" : "Matt Latusek", + "y" : 8, + "name" : "#50: Matt Latusek" + } + ], + "name" : "Perl Weekly Challenge Leaders" + } + ], + "legend" : { + "enabled" : "false" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-19 14:11:00 GMT" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : "true", + "headerFormat" : "" + }, "drilldown" : { "series" : [ { + "name" : "Joelle Maslak", "data" : [ [ - "Perl 5", - 31 + "Blog", + 4 ], [ "Perl 6", 31 ], [ - "Blog", - 4 + "Perl 5", + 31 ] ], - "id" : "Joelle Maslak", - "name" : "Joelle Maslak" + "id" : "Joelle Maslak" }, { "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", 26 ], - [ - "Perl 6", - 25 - ], [ "Blog", 15 + ], + [ + "Perl 6", + 25 ] - ], - "name" : "Laurent Rosenfeld" + ] }, { - "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas", "data" : [ [ - "Perl 5", + "Perl 6", 24 ], [ - "Perl 6", + "Perl 5", 24 ] ], - "id" : "Jaldhar H. Vyas" + "name" : "Jaldhar H. Vyas" }, { "data" : [ @@ -62,30 +354,26 @@ 21 ] ], - "id" : "Ruben Westerberg", - "name" : "Ruben Westerberg" + "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg" }, { + "id" : "Adam Russell", + "name" : "Adam Russell", "data" : [ - [ - "Blog", - 12 - ], [ "Perl 5", 24 + ], + [ + "Blog", + 12 ] - ], - "id" : "Adam Russell", - "name" : "Adam Russell" + ] }, { - "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ - [ - "Perl 5", - 4 - ], [ "Blog", 7 @@ -93,25 +381,30 @@ [ "Perl 6", 22 + ], + [ + "Perl 5", + 4 ] ], - "id" : "Simon Proctor" + "name" : "Simon Proctor" }, { + "id" : "Arne Sommer", + "name" : "Arne Sommer", "data" : [ - [ - "Perl 6", - 21 - ], [ "Blog", 11 + ], + [ + "Perl 6", + 21 ] - ], - "id" : "Arne Sommer", - "name" : "Arne Sommer" + ] }, { + "id" : "Kian-Meng Ang", "name" : "Kian-Meng Ang", "data" : [ [ @@ -122,24 +415,24 @@ "Perl 5", 21 ] - ], - "id" : "Kian-Meng Ang" + ] }, { - "name" : "Athanasius", - "id" : "Athanasius", "data" : [ - [ - "Perl 6", - 2 - ], [ "Perl 5", 26 + ], + [ + "Perl 6", + 2 ] - ] + ], + "name" : "Athanasius", + "id" : "Athanasius" }, { + "id" : "Gustavo Chaves", "name" : "Gustavo Chaves", "data" : [ [ @@ -150,22 +443,20 @@ "Perl 5", 23 ] - ], - "id" : "Gustavo Chaves" + ] }, { + "name" : "Andrezgz", "data" : [ [ "Perl 5", 25 ] ], - "id" : "Andrezgz", - "name" : "Andrezgz" + "id" : "Andrezgz" }, { "name" : "Francis Whittle", - "id" : "Francis Whittle", "data" : [ [ "Blog", @@ -175,25 +466,25 @@ "Perl 6", 19 ] - ] + ], + "id" : "Francis Whittle" }, { - "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ - [ - "Perl 5", - 13 - ], [ "Blog", 11 + ], + [ + "Perl 5", + 13 ] ], - "id" : "Dave Jacoby" + "name" : "Dave Jacoby" }, { "name" : "E. Choroba", - "id" : "E. Choroba", "data" : [ [ "Perl 5", @@ -203,11 +494,15 @@ "Blog", 8 ] - ] + ], + "id" : "E. Choroba" }, { - "id" : "Jo Christian Oterhals", "data" : [ + [ + "Perl 5", + 6 + ], [ "Perl 6", 12 @@ -215,15 +510,13 @@ [ "Blog", 6 - ], - [ - "Perl 5", - 6 ] ], - "name" : "Jo Christian Oterhals" + "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals" }, { + "name" : "Dr James A. Smith", "data" : [ [ "Perl 6", @@ -234,8 +527,7 @@ 12 ] ], - "id" : "Dr James A. Smith", - "name" : "Dr James A. Smith" + "id" : "Dr James A. Smith" }, { "data" : [ @@ -244,8 +536,8 @@ 18 ] ], - "id" : "Daniel Mantovani", - "name" : "Daniel Mantovani" + "name" : "Daniel Mantovani", + "id" : "Daniel Mantovani" }, { "data" : [ @@ -254,49 +546,48 @@ 18 ] ], - "id" : "Duncan C. White", - "name" : "Duncan C. White" + "name" : "Duncan C. White", + "id" : "Duncan C. White" }, { "name" : "Mark Senn", - "id" : "Mark Senn", "data" : [ - [ - "Blog", - 4 - ], [ "Perl 6", 12 + ], + [ + "Blog", + 4 ] - ] + ], + "id" : "Mark Senn" }, { - "name" : "Nick Logan", - "id" : "Nick Logan", "data" : [ [ - "Perl 5", + "Perl 6", 8 ], [ - "Perl 6", + "Perl 5", 8 ] - ] + ], + "name" : "Nick Logan", + "id" : "Nick Logan" }, { - "name" : "Steven Wilson", "id" : "Steven Wilson", "data" : [ [ "Perl 5", 15 ] - ] + ], + "name" : "Steven Wilson" }, { - "name" : "Lars Balker", "id" : "Lars Balker", "data" : [ [ @@ -307,89 +598,89 @@ "Perl 6", 4 ] - ] + ], + "name" : "Lars Balker" }, { - "name" : "Yozen Hernandez", "id" : "Yozen Hernandez", + "name" : "Yozen Hernandez", "data" : [ + [ + "Blog", + 4 + ], [ "Perl 5", 10 - ], + ] + ] + }, + { + "id" : "Guillermo Ramos", + "name" : "Guillermo Ramos", + "data" : [ [ - "Blog", - 4 + "Perl 5", + 12 ] ] }, { - "id" : "Ozzy", "data" : [ [ "Perl 6", 12 ] ], - "name" : "Ozzy" + "name" : "Ozzy", + "id" : "Ozzy" }, { - "name" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] ], + "name" : "Alicia Bielsa", "id" : "Alicia Bielsa" }, { - "id" : "Feng Chang", "data" : [ - [ - "Perl 5", - 4 - ], [ "Perl 6", 7 + ], + [ + "Perl 5", + 4 ] ], - "name" : "Feng Chang" + "name" : "Feng Chang", + "id" : "Feng Chang" }, { + "id" : "Doug Schrag", + "name" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] - ], - "id" : "Doug Schrag", - "name" : "Doug Schrag" + ] }, { - "name" : "Maxim Nechaev", "data" : [ [ "Perl 5", 10 ] ], + "name" : "Maxim Nechaev", "id" : "Maxim Nechaev" }, - { - "name" : "Guillermo Ramos", - "data" : [ - [ - "Perl 5", - 9 - ] - ], - "id" : "Guillermo Ramos" - }, { "name" : "Robert Gratza", - "id" : "Robert Gratza", "data" : [ [ "Perl 5", @@ -399,19 +690,21 @@ "Perl 6", 6 ] - ] + ], + "id" : "Robert Gratza" }, { + "id" : "John Barrett", "data" : [ [ "Perl 5", 7 ] ], - "id" : "John Barrett", "name" : "John Barrett" }, { + "id" : "Khalid", "name" : "Khalid", "data" : [ [ @@ -426,12 +719,11 @@ "Blog", 1 ] - ], - "id" : "Khalid" + ] }, { - "name" : "Jaime Corchado", "id" : "Jaime Corchado", + "name" : "Jaime Corchado", "data" : [ [ "Perl 5", @@ -446,12 +738,12 @@ 6 ] ], - "id" : "Kevin Colyer", - "name" : "Kevin Colyer" + "name" : "Kevin Colyer", + "id" : "Kevin Colyer" }, { - "name" : "Kivanc Yazan", "id" : "Kivanc Yazan", + "name" : "Kivanc Yazan", "data" : [ [ "Perl 5", @@ -460,17 +752,17 @@ ] }, { + "id" : "Maxim Kolodyazhny", "name" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 6 ] - ], - "id" : "Maxim Kolodyazhny" + ] }, { - "name" : "Philippe Bruhat", + "id" : "Philippe Bruhat", "data" : [ [ "Blog", @@ -481,17 +773,17 @@ 4 ] ], - "id" : "Philippe Bruhat" + "name" : "Philippe Bruhat" }, { - "name" : "Sergio Iglesias", - "id" : "Sergio Iglesias", "data" : [ [ "Perl 5", 6 ] - ] + ], + "name" : "Sergio Iglesias", + "id" : "Sergio Iglesias" }, { "data" : [ @@ -500,56 +792,56 @@ 5 ] ], - "id" : "Arpad Toth", - "name" : "Arpad Toth" + "name" : "Arpad Toth", + "id" : "Arpad Toth" }, { + "name" : "Pete Houston", "data" : [ [ "Perl 5", 5 ] ], - "id" : "Pete Houston", - "name" : "Pete Houston" + "id" : "Pete Houston" }, { + "id" : "Steve Rogerson", "data" : [ - [ - "Perl 6", - 2 - ], [ "Perl 5", 3 + ], + [ + "Perl 6", + 2 ] ], - "id" : "Steve Rogerson", "name" : "Steve Rogerson" }, { - "name" : "Veesh Goldman", + "id" : "Veesh Goldman", "data" : [ [ "Perl 5", 5 ] ], - "id" : "Veesh Goldman" + "name" : "Veesh Goldman" }, { - "id" : "Aaron Sherman", "data" : [ [ "Perl 6", 4 ] ], - "name" : "Aaron Sherman" + "name" : "Aaron Sherman", + "id" : "Aaron Sherman" }, { - "name" : "Alex Daniel", "id" : "Alex Daniel", + "name" : "Alex Daniel", "data" : [ [ "Perl 6", @@ -558,14 +850,14 @@ ] }, { - "id" : "Bob Kleemann", + "name" : "Bob Kleemann", "data" : [ [ "Perl 5", 4 ] ], - "name" : "Bob Kleemann" + "id" : "Bob Kleemann" }, { "id" : "Chenyf", @@ -578,14 +870,14 @@ "name" : "Chenyf" }, { - "name" : "David Kayal", - "id" : "David Kayal", "data" : [ [ "Perl 5", 4 ] - ] + ], + "name" : "David Kayal", + "id" : "David Kayal" }, { "data" : [ @@ -594,18 +886,18 @@ 4 ] ], - "id" : "Finley", - "name" : "Finley" + "name" : "Finley", + "id" : "Finley" }, { - "name" : "Luis F. Uceta", "id" : "Luis F. Uceta", "data" : [ [ "Perl 6", 4 ] - ] + ], + "name" : "Luis F. Uceta" }, { "id" : "Matt Latusek", @@ -618,297 +910,5 @@ "name" : "Matt Latusek" } ] - }, - "series" : [ - { - "colorByPoint" : "true", - "name" : "Perl Weekly Challenge Leaders", - "data" : [ - { - "drilldown" : "Joelle Maslak", - "y" : 132, - "name" : "#1: Joelle Maslak" - }, - { - "name" : "#2: Laurent Rosenfeld", - "y" : 132, - "drilldown" : "Laurent Rosenfeld" - }, - { - "drilldown" : "Jaldhar H. Vyas", - "y" : 96, - "name" : "#3: Jaldhar H. Vyas" - }, - { - "name" : "#4: Ruben Westerberg", - "drilldown" : "Ruben Westerberg", - "y" : 84 - }, - { - "name" : "#5: Adam Russell", - "drilldown" : "Adam Russell", - "y" : 72 - }, - { - "drilldown" : "Simon Proctor", - "y" : 66, - "name" : "#6: Simon Proctor" - }, - { - "name" : "#7: Arne Sommer", - "drilldown" : "Arne Sommer", - "y" : 64 - }, - { - "y" : 64, - "drilldown" : "Kian-Meng Ang", - "name" : "#8: Kian-Meng Ang" - }, - { - "name" : "#9: Athanasius", - "drilldown" : "Athanasius", - "y" : 56 - }, - { - "name" : "#10: Gustavo Chaves", - "drilldown" : "Gustavo Chaves", - "y" : 54 - }, - { - "drilldown" : "Andrezgz", - "y" : 50, - "name" : "#11: Andrezgz" - }, - { - "name" : "#12: Francis Whittle", - "y" : 50, - "drilldown" : "Francis Whittle" - }, - { - "name" : "#13: Dave Jacoby", - "drilldown" : "Dave Jacoby", - "y" : 48 - }, - { - "y" : 48, - "drilldown" : "E. Choroba", - "name" : "#14: E. Choroba" - }, - { - "y" : 48, - "drilldown" : "Jo Christian Oterhals", - "name" : "#15: Jo Christian Oterhals" - }, - { - "name" : "#16: Dr James A. Smith", - "y" : 44, - "drilldown" : "Dr James A. Smith" - }, - { - "name" : "#17: Daniel Mantovani", - "drilldown" : "Daniel Mantovani", - "y" : 36 - }, - { - "drilldown" : "Duncan C. White", - "y" : 36, - "name" : "#18: Duncan C. White" - }, - { - "name" : "#19: Mark Senn", - "y" : 32, - "drilldown" : "Mark Senn" - }, - { - "name" : "#20: Nick Logan", - "drilldown" : "Nick Logan", - "y" : 32 - }, - { - "name" : "#21: Steven Wilson", - "drilldown" : "Steven Wilson", - "y" : 30 - }, - { - "y" : 28, - "drilldown" : "Lars Balker", - "name" : "#22: Lars Balker" - }, - { - "drilldown" : "Yozen Hernandez", - "y" : 28, - "name" : "#23: Yozen Hernandez" - }, - { - "name" : "#24: Ozzy", - "drilldown" : "Ozzy", - "y" : 24 - }, - { - "name" : "#25: Alicia Bielsa", - "drilldown" : "Alicia Bielsa", - "y" : 22 - }, - { - "y" : 22, - "drilldown" : "Feng Chang", - "name" : "#26: Feng Chang" - }, - { - "name" : "#27: Doug Schrag", - "y" : 20, - "drilldown" : "Doug Schrag" - }, - { - "y" : 20, - "drilldown" : "Maxim Nechaev", - "name" : "#28: Maxim Nechaev" - }, - { - "y" : 18, - "drilldown" : "Guillermo Ramos", - "name" : "#29: Guillermo Ramos" - }, - { - "drilldown" : "Robert Gratza", - "y" : 16, - "name" : "#30: Robert Gratza" - }, - { - "name" : "#31: John Barrett", - "drilldown" : "John Barrett", - "y" : 14 - }, - { - "drilldown" : "Khalid", - "y" : 14, - "name" : "#32: Khalid" - }, - { - "name" : "#33: Jaime Corchado", - "y" : 12, - "drilldown" : "Jaime Corchado" - }, - { - "y" : 12, - "drilldown" : "Kevin Colyer", - "name" : "#34: Kevin Colyer" - }, - { - "y" : 12, - "drilldown" : "Kivanc Yazan", - "name" : "#35: Kivanc Yazan" - }, - { - "drilldown" : "Maxim Kolodyazhny", - "y" : 12, - "name" : "#36: Maxim Kolodyazhny" - }, - { - "name" : "#37: Philippe Bruhat", - "drilldown" : "Philippe Bruhat", - "y" : 12 - }, - { - "name" : "#38: Sergio Iglesias", - "drilldown" : "Sergio Iglesias", - "y" : 12 - }, - { - "name" : "#39: Arpad Toth", - "y" : 10, - "drilldown" : "Arpad Toth" - }, - { - "name" : "#40: Pete Houston", - "drilldown" : "Pete Houston", - "y" : 10 - }, - { - "name" : "#41: Steve Rogerson", - "y" : 10, - "drilldown" : "Steve Rogerson" - }, - { - "name" : "#42: Veesh Goldman", - "drilldown" : "Veesh Goldman", - "y" : 10 - }, - { - "name" : "#43: Aaron Sherman", - "y" : 8, - "drilldown" : "Aaron Sherman" - }, - { - "name" : "#44: Alex Daniel", - "y" : 8, - "drilldown" : "Alex Daniel" - }, - { - "name" : "#45: Bob Kleemann", - "drilldown" : "Bob Kleemann", - "y" : 8 - }, - { - "y" : 8, - "drilldown" : "Chenyf", - "name" : "#46: Chenyf" - }, - { - "y" : 8, - "drilldown" : "David Kayal", - "name" : "#47: David Kayal" - }, - { - "name" : "#48: Finley", - "drilldown" : "Finley", - "y" : 8 - }, - { - "y" : 8, - "drilldown" : "Luis F. Uceta", - "name" : "#49: Luis F. Uceta" - }, - { - "drilldown" : "Matt Latusek", - "y" : 8, - "name" : "#50: Matt Latusek" - } - ] - } - ], - "legend" : { - "enabled" : "false" - }, - "xAxis" : { - "type" : "category" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-19 14:05:55 GMT" - }, - "yAxis" : { - "title" : { - "text" : "Total Score" - } - }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" - }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, - "plotOptions" : { - "series" : { - "borderWidth" : 0, - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - } - } - }, - "chart" : { - "type" : "column" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index 129c9713b0..d05f2e0791 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -2,51 +2,11 @@ "chart" : { "type" : "column" }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "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" - ] - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-19 14:05:52 GMT" + "title" : { + "text" : "Perl Weekly Challenge - 2019" }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 2, @@ -78,9 +38,11 @@ 2, 4, 0 - ] + ], + "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 4, 0, @@ -112,8 +74,7 @@ 0, 7, 4 - ], - "name" : "Perl 6" + ] }, { "name" : "Blog", @@ -152,16 +113,55 @@ } ], "yAxis" : { + "min" : 0, "title" : { "text" : "" - }, - "min" : 0 + } }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-19 14:10:54 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" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } } } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index 7f8e75ca4e..c517920790 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,12 +1,20 @@ { + "yAxis" : { + "title" : { + "text" : "" + }, + "min" : 0 + }, + "chart" : { + "type" : "column" + }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 2, 3, - 9, + 12, 23, 0, 6, @@ -33,7 +41,8 @@ 0, 0, 4 - ] + ], + "name" : "Perl 5" }, { "name" : "Perl 6", @@ -71,7 +80,6 @@ ] }, { - "name" : "Blog", "data" : [ 6, 0, @@ -103,29 +111,15 @@ 0, 0, 0 - ] + ], + "name" : "Blog" } ], - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, - "tooltip" : { - "shared" : 1, - "pointFormat" : "{series.name}: {point.y}
" - }, - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-06-19 14:10:54 GMT" }, "xAxis" : { "categories" : [ @@ -161,7 +155,13 @@ "Matt Latusek" ] }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-19 14:05:52 GMT" + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } } } diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index 6c9c1eb759..f526d19c06 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,58 +1,6 @@ { - "chart" : { - "type" : "column" - }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-06-19 14:05:52 GMT" - }, - "xAxis" : { - "categories" : [ - "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", - "Rakesh Kumar Shardiwal", - "Simon Proctor", - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Tiago Stock", - "Tim Smith", - "Tore Andersson", - "Luis F. Uceta", - "Veesh Goldman" - ] - }, - "yAxis" : { - "title" : { - "text" : "" - }, - "min" : 0 - }, "series" : [ { - "name" : "Perl 5", "data" : [ 0, 6, @@ -84,7 +32,8 @@ 2, 0, 5 - ] + ], + "name" : "Perl 5" }, { "data" : [ @@ -122,7 +71,6 @@ "name" : "Perl 6" }, { - "name" : "B