-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (72 loc) · 3.02 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
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="./final-vis/styles.css" type="text/css" property="stylesheet">
<style>
.vizlink{
box-shadow: 3px 3px 12px grey;
cursor: pointer;
}
.viztitle{
font-family:NeueMontreal;
font-size:1.3rem;
}
</style>
<script>
function load(){
document.body.style.zoom=(document.documentElement.clientWidth / 2000);
}
</script>
<body onload='load()' style='text-align:center'>
<img src='images/cds.png' style='height: 80px; margin-top:7vh; margin-bottom:1vh'></img>
<div style='margin-bottom:7vh;'>
<div style='font-family: NeueMontreal; font-size:55px; width:100%; line-height:80px; margin:5px 0px;'>Social Tribes<br>
<div style='font-family: Yantramanav; font-size:20px; line-height:24px; margin-bottom:20px'> <i>An analysis of the connections between 432 political journalists on Twitter. (<a href='write-up/writeup.html'>Write-Up</a>)</i> <br>Max Chen, Sam Kitterman, Shalin Mehta, Kevin Ngo, Danny Yang </div></div>
</div>
<div class="row">
<div class="col-md-3">
<center>
<div class="card vizlink" onclick="location.href = 'final-vis/clusters.html';" style="width: 18rem;">
<img class="card-img-top" src="images/clusters.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title viztitle">Clusters</h5>
<p class="card-text">An overview of various clustering algorithms.</p>
</div>
</div>
</center>
</div>
<div class="col-md-3">
<center>
<div class="card vizlink" onclick="location.href = 'final-vis/dendrograms.html';" style="width: 18rem;">
<img class="card-img-top" src="images/dendrograms.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title viztitle">Dendrogram</h5>
<p class="card-text">A hierarchical visualization of agglomerative clustering.</p>
</div>
</div>
</center>
</div>
<div class="col-md-3">
<center>
<div class="card vizlink" onclick="location.href = 'final-vis/force-directed.html';" style="width: 18rem;">
<img class="card-img-top" src="images/force-directed.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title viztitle">Force-Directed</h5>
<p class="card-text">A dynamic graph highlighting the strongest connections.</p>
</div>
</div>
</center>
</div>
<div class="col-md-3">
<center>
<div class="card vizlink" onclick="location.href = 'final-vis/agglomerative-clustering.html';" style="width: 18rem;">
<img class="card-img-top" src="images/agglomerative-clustering.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title viztitle">Agglomerative Clustering</h5>
<p class="card-text">A visualization detailing the process of agglomerative clustering.</p>
</div>
</div>
</center>
</div>
</div>
</body>