-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
105 lines (99 loc) · 2.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<meta charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'>
<style>
body {
font-family: "Roboto", sans-serif;
padding: 20px;
}
#footer {
width: 100%;
float: left;
clear:left;
margin-top: 30px;
}
.h1 {
float: left;
}
.section {
float:left;
clear:left;
margin-top: 50px;
}
.title {
font-size: 30px;
font-weight: bold;
}
.description {
}
a, a:visited {
color: #111;
}
</style>
<body>
<h1>Labor statistics by county</h1>
<div class="description">
The following visualizations are intended as explorations into the
Bureau of Labor Statistic's employment and wage data.
<br>
<br>
<a href="https://github.com/bayeshack2016/thealchemists">Code, data and methodology</a>
</div>
<div class="section">
<a href="georgia.html">
<img src="img/georgia.gif" width=600px><br>
<span class="title">
Single year: Georgia 2004
</span>
</a>
<p class="description">
Investigate differences between counties
for a single year of data. An alternative "bubble chart" is used to give
a sense of proportionality for counties that have high rates of unemployment
but have a very small population.
</p>
</div>
<div class="section">
<a href="georgia-gapminder.html">
<img src="img/georgia-gapminder.gif" width=600px><br>
<span class="title">
Multiple years: Georgia 2004 - 2014
</span>
</a>
<p class="description">
Quickly see the same visualizations as the one above
for the years 2004 through 2014. You can clearly see the effect of the 2008-2009 recession
as the unemployment rate is color on an absolute scale.
</p>
</div>
<div class="section">
<a href="georgia-2004-2014.html">
<img src="img/georgia-2004-2014.png" width=600px><br>
<span class="title">
Compare two years: Georgia from 2004 to 2014
</span>
</a>
<p class="description">
Compare two years with each other directly, by taking the difference
of each metric (unemployment rate, establishments and average weekly wage) and rendering the difference.
</p>
</div>
<div class="section">
<span class="description">
</span>
</div>
<div id="footer">
<h2>Team</h2>
<a href="https://twitter.com/enjalot">Ian Johnson</a>
<br>
<a href="https://twitter.com/lewislehe">Lewis Lehe</a>
<br>
<a href="https://www.linkedin.com/in/siumeiman">Siu-Mei Man</a>
<br>
<a href="https://twitter.com/syntagmatic">Kai Chang</a>
<br>
<br>
<br>
<br>
</div>
</body>