-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslide3.html
More file actions
51 lines (38 loc) · 1.39 KB
/
slide3.html
File metadata and controls
51 lines (38 loc) · 1.39 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Slide 3 - CS416 Project 2 by Sicheng Meng</title>
<script src='https://d3js.org/d3.v7.min.js'></script>
<script src="chart3.js"></script>
<link rel="stylesheet" href="./proj2.css">
</head>
<body onload='initScatterplot()'>
<header id="header">
<div class="innertube">
<p><strong>Explore World's Energy Consumption and Problems</strong> - CS416 Narrative Visualization Project by Sicheng Meng</p>
</div>
</header>
<main>
<div class="innertube">
<div id="chart3"></div>
</div>
</main>
<div id="left">
<div class="innertube">
<h3>Is there any correlation between GDP and energy consumption?</h1>
<ul class="bulletpoint">
<li>In general, higher GPD means higer energy consumption, they have a positive correlation.</li>
<li>The scatterplot is presented in logarithmic value. <strong>Hover over</strong> each data point to see the actual value for each country.</li>
</ul>
</div>
</div>
<footer id="footer">
<div class="innertube">
<div class="buttonnext-container">
<button class="next-button" onclick="window.location.href='index.html'">Back to Home</button>
</div>
</div>
</footer>
</body>
</html>