Skip to content

Commit 4379505

Browse files
committed
Updated Pretty Graphs
1 parent 5cf2ae0 commit 4379505

File tree

4 files changed

+58
-23
lines changed

4 files changed

+58
-23
lines changed

preso/assets/images/google-trends.png

-9.67 KB
Loading
9.59 KB
Loading

preso/index.html

+52-17
Original file line numberDiff line numberDiff line change
@@ -1017,13 +1017,13 @@ <h2>Jobs</h2>
10171017

10181018
var data = google.visualization.arrayToDataTable([
10191019
['Jobs', 'Grails', 'Play Framework', 'Spring MVC'],
1020-
['Dice', 202, 5, 494],
1021-
['Monster', 79, 4, 193],
1022-
['Indeed', 1113, 31, 1844]
1020+
['Dice', 209, 9, 552],
1021+
['Monster', 67, 11, 188],
1022+
['Indeed', 951, 58, 1388]
10231023
]);
10241024

10251025
var chart = new google.visualization.BarChart(document.getElementById('jobs_chart_div'));
1026-
chart.draw(data, {width:900, height:500});
1026+
chart.draw(data, {width:900, height:500, title: 'March 19, 2013'});
10271027
}
10281028
</script>
10291029
<div id="jobs_chart_div" style="width: 900px; height: 500px;"></div>
@@ -1037,16 +1037,19 @@ <h2>LinkedIn Skills</h2>
10371037

10381038
var data = google.visualization.arrayToDataTable([
10391039
['Skill', '# People'],
1040-
['Grails', 3240],
1041-
['Play Framework', 234],
1042-
['Spring MVC', 2890]
1040+
['Grails', 14051],
1041+
['Play Framework', 3397],
1042+
['Spring MVC', 13685]
10431043
]);
10441044

10451045
var chart = new google.visualization.BarChart(document.getElementById('linkedin_chart_div'));
1046-
chart.draw(data, {width:900, height:500});
1046+
chart.draw(data, {width:900, height:500, title: 'March 19, 2013'});
10471047
}
10481048
</script>
10491049
<div id="linkedin_chart_div" style="width: 900px; height: 500px;"></div>
1050+
<aside class="notes">
1051+
Grails up 20% y/y, Play up 69%
1052+
</aside>
10501053
</section>
10511054
<section>
10521055
<h2>Google Trends</h2>
@@ -1055,7 +1058,7 @@ <h2>Google Trends</h2>
10551058
<section>
10561059
<h2>Indeed Job Trends</h2>
10571060
<p style="text-align: center">
1058-
<img src="assets/images/indeed-absolute.png" width="779">
1061+
<img src="assets/images/indeed-absolute.png" width="777">
10591062
</p>
10601063
</section>
10611064
<section>
@@ -1069,12 +1072,29 @@ <h2>User Mailing List Traffic</h2>
10691072
['March', 1503, 3365],
10701073
['April', 1377, 2884],
10711074
['May', 1299, 2760]
1072-
]), {width:900, height:500}
1075+
]), {width:900, height:500, title: 'June 2012'}
10731076
);
10741077
}
10751078
</script>
10761079
<div id="mailinglist_messages_chart_div" style="width: 900px; height: 500px;"></div>
10771080
</section>
1081+
<section>
1082+
<h2>User Mailing List Traffic</h2>
1083+
<script>
1084+
google.setOnLoadCallback(drawMailingListChart);
1085+
1086+
function drawMailingListChart() {
1087+
new google.visualization.BarChart(document.getElementById('mailinglist_messages_chart_div2')).draw(google.visualization.arrayToDataTable([
1088+
['Messages', 'Grails', 'Play Framework'],
1089+
['December', 1059, 1181],
1090+
['January', 973, 1797],
1091+
['February', 828, 1623]
1092+
]), {width:900, height:500, title: 'March 2013'}
1093+
);
1094+
}
1095+
</script>
1096+
<div id="mailinglist_messages_chart_div2" style="width: 900px; height: 500px;"></div>
1097+
</section>
10781098
<section>
10791099
<h2>Books on Amazon</h2>
10801100
<script>
@@ -1083,13 +1103,28 @@ <h2>Books on Amazon</h2>
10831103
function drawBooksChart() {
10841104
new google.visualization.PieChart(document.getElementById('books_chart_div')).draw(google.visualization.arrayToDataTable([
10851105
['Books', 'Amazon'],
1086-
['Grails', 12],
1087-
['Play Framework', 2]
1088-
]), {width:900, height:500, pieSliceText:'value'});
1106+
['Grails', 8],
1107+
['Play Framework', 3]
1108+
]), {width:900, height:500, pieSliceText:'value', title: 'March 2013'});
10891109
}
10901110
</script>
10911111
<div id="books_chart_div" style="width: 900px; height: 500px;"></div>
10921112
</section>
1113+
<section>
1114+
<h2>2013 Releases</h2>
1115+
<script>
1116+
google.setOnLoadCallback(drawReleasesChart);
1117+
1118+
function drawReleasesChart() {
1119+
new google.visualization.PieChart(document.getElementById('releases_chart_div2')).draw(google.visualization.arrayToDataTable([
1120+
['2013 Releases', '2013'],
1121+
['Grails', 1],
1122+
['Play Framework', 1]
1123+
]), {width:900, height:500, pieSliceText:'value'});
1124+
}
1125+
</script>
1126+
<div id="releases_chart_div2" style="width: 900px; height: 500px;"></div>
1127+
</section>
10931128
<section>
10941129
<h2>2012 Releases</h2>
10951130
<script>
@@ -1098,8 +1133,8 @@ <h2>2012 Releases</h2>
10981133
function drawReleasesChart() {
10991134
new google.visualization.PieChart(document.getElementById('releases_chart_div')).draw(google.visualization.arrayToDataTable([
11001135
['2012 Releases', '2012'],
1101-
['Grails', 3],
1102-
['Play Framework', 2]
1136+
['Grails', 9],
1137+
['Play Framework', 6]
11031138
]), {width:900, height:500, pieSliceText:'value'});
11041139
}
11051140
</script>
@@ -1113,8 +1148,8 @@ <h2>StackOverflow Questions</h2>
11131148
function drawStackOverflowChart() {
11141149
new google.visualization.PieChart(document.getElementById('stackoverflow_chart_div')).draw(google.visualization.arrayToDataTable([
11151150
['Tagged Questions', '#'],
1116-
['grails', 7430],
1117-
['playframework', 2467]
1151+
['grails', 10710],
1152+
['playframework', 3950]
11181153
]), {width:900, height:500, pieSliceText:'value'});
11191154
}
11201155
</script>

preso/stats.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ Comparison Statistics
33

44
(a.k.a.) Pretty Graphs
55

6-
As of Tuesday (March 19th, 3 PM)
6+
As of Tuesday (March 19th, 10 PM)
77

88
Jobs on Dice (World)
9-
grails: 208
9+
grails: 209
1010
playframework -> "play framework": 9
11-
play framework: 503
11+
"spring mvc": 552
1212

1313
LinkedIn Skills (World)
14-
grails: 14,048
15-
play framework: 23,610
16-
playframework: 238
14+
grails: 14051
15+
"play framework": 3397
16+
"spring mvc": 13685
1717

1818
Google Trends
1919
google-trends.png

0 commit comments

Comments
 (0)