-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (63 loc) · 2.85 KB
/
Copy pathindex.html
File metadata and controls
76 lines (63 loc) · 2.85 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
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
<!DOCTYPE html>
<html>
<head>
<!-- <title>DSCI 554 Assignment 6</title> -->
<link rel="stylesheet" href="stylea6.css">
<link rel="stylesheet" href="../node_modules/highlightjs/styles/github.css">
<script src="../node_modules/highlightjs/highlight.pack.min.js"></script>
<script src="../node_modules/d3/dist/d3.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script src="indo.js"> </script>
<h1>Co2 Emissions in 2014</h1>
</head>
<body>
<div><h4>Pratishtha Singh <a href="mailto:username@usc.edu">pratisht@usc.edu</a></h4></div>
<div class="answer">
<p>
I have chosen the 'CO2 Emissions Estimates' Dataset from the <a href="http://data.un.org">UN Data</a>. website.
This dataset contains the carbon emissions (thousand metric tons of carbon dioxide) and
emissions per capita (metric tons of carbon dioxide).
I have first cleaned the dataset and used just the essential information.
The dataset contains just the 10 countries and their carbon dioxide emissions
(thousand metric tons of carbon dioxide) in the year 1995.
For this exercise I have chosen 10 countries and analysed the per capita emissions.
</p>
<p>
The link to my google sheet is <a href="https://docs.google.com/spreadsheets/d/1DcoNZL88XLywPAfApKhbS_U3ITqHOtvyxtDOCFuUX9A/edit?usp=sharing">here</a>.
</p>
<p>
These are the 10 countries I have picked:
<ol>
<li>Afghanistan</li>
<li>China</li>
<li>Germany</li>
<li>Haiti</li>
<li>India</li>
<li>Kazakhstan</li>
<li>Madagascar</li>
<li>Switzerland</li>
<li>United Kingdom</li>
<li>United States of America</li>
</ol>
</p>
</div>
<!-- <h3 align= "center">Co2 Emissions in 1995</h3> -->
<div class="commands">
<span class="initial-state" id="reset">RESET</span>
</div>
<div class="commands">
<span class="filter" id="all">all</span>
<span class="filter" id="top5">Top 5 emission countries</span>
<span class="filter" id="bottom5">Bottom 5 emission countries</span>
<!-- <label><input style="margin: 0 5px 0 0" type="checkbox" checked>USA</label> -->
</div>
<div class="commands">
<span class="sort" id="alphabetic">Order by Country</span>
<span class="sort" id="ascending">Order by Value(ascending)</span>
<span class="sort" id="descending">Order by Value(descending)</span>
</div>
<div id="chart"></div>
<script src="node_modules/d3/dist/d3.min.js"></script>
<script src="indo.js"></script>
</body>
</html>