-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (57 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Import Vega & Vega-Lite (does not have to be from CDN) -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<!-- Import pure.css -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css"
integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<!-- CSS file -->
<link rel="stylesheet" type="text/css" href="css/styles.css" media="all">
</head>
<body>
<div class="page">
<!-- pure grid group -->
<div class="pure-g">
<div class="pure-u-1-1">
<h1>Visualisation for Homework Week 9</h1>
</div>
</div>
<!-- end pure grid group -->
<div class="pure-g">
<div class="pure-u-1-2">
<div class="description description-left">
<h2>Insights into the Density Dot Plot</h2>
<p>the map shows two insightful pieces.
The first one is a density dot plot of all the airports in the world
where there have been flights arriving and departing.
Secondly, we get to see the darker dots that indicate airports with a
higher frequency of arrivals and departures.
</p>
</div>
</div>
</div>
<!-- Move the graph container below the text -->
<div class="pure-g">
<div class="pure-u-1-1">
<div id="vis1" class="vis-container"></div>
</div>
</div>
</div>
<!-- end page -->
<script type="text/javascript">
var specVis1 = "./w9homework.vg.json";
vegaEmbed('#vis1', specVis1, { "actions": false });
</script>
</body>
</html>