-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
99 lines (85 loc) · 2.92 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Humans of U</title>
<script src="//d3js.org/d3.v4.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600">
<link rel="stylesheet" type="text/css" href="sequences.css" />
</head>
<body>
<header>
<h1> Humans of U
</h1>
</header>
<div class="wrapper">
<div class="box-a">
<div id="main">
<div id="sequence"></div>
<div id="chart">
<div id="explanation" style="visibility: hidden;">
<span id="percentage"></span>
<br/> of employees have experience with this. </div>
</div>
</div>
</div>
<div class="box-b">
<div id="sidebar">
<div id="legend"></div>
</div>
</div>
<div class="box-c">
<div id="words">
<div class="summary">
<h3> A dynamic look at the skills across our organization - this visualization demonstrates a potential use case to measure and manage the core competencies across the organization.
</h3>
<h4>Built by Meag Doherty, Emily Gallt, Matthew Mangan, Carlo Mazzaferro.</h4>
</div>
<div class="section">
<div class="subtitle">
Methods
</div>
<div class="summary">
<ul>
<li> Collected 288 documents, including resumes and professional blurbs from across the organization. </li>
<li> Applied text mining algorithms to extract the most relevant keywords from each document. </li>
<li> Selected top 100 keywords, eliminated common words like 'this' and 'document', assigned top level taxonomy based on U's core competencies, and developed and defined secondary taxonomy.
</li>
</ul>
</div>
</div>
<div class="section">
<div class="subtitle">
What We Learned
</div>
<div class="summary">
<ul>
<li> There's more that unites us than divides us.
</li>
<li> Team U represents a diverse range of experience.
</li>
</ul>
</div>
</div>
<div class="section">
<div class="subtitle">
What's Next
</div>
<div class="summary">
<ul>
<li> Update with new information, track data over time.
</li>
<li> Use this tool to identify gaps, implement a weighting system to visualize the depth of experience by keyword.
</li>
</ul>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="sequences.js"></script>
<script type="text/javascript">
// Hack to make this example display correctly in an iframe on bl.ocks.org
d3.select(self.frameElement).style("height", "700px");
</script>
</body>
</html>