-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (75 loc) · 4.47 KB
/
index.html
File metadata and controls
81 lines (75 loc) · 4.47 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
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width; initial-scale=1.0;">
<title>Data Visualization</title>
<link rel="icon" type="image/png" href="chart-icon-color.png">
<link rel="stylesheet" href="styles/bootstrap.min.css">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous">
</head>
<body class="container py-4">
<h3 class="mb-0 mx-2">Leading Causes of Death in the US</h3>
<div id="stacked-bar" class="mx-0 my-0"></div>
<div class="mt-3 text-right col-lg-11">
<small>Source: <a href="https://catalog.data.gov/dataset/age-adjusted-death-rates-for-the-top-10-leading-causes-of-death-united-states-2013"
target="blank">Centers for Disease Control and Prevention</a></small>
</div>
<h3 class="mb-0 mt-4">US State Populations 2018</h3>
<small>Source: <a href="https://www.census.gov/data/tables/time-series/demo/popest/2010s-national-total.html"
target="blank">United States Census Bureau</a></small>
<div id="bubble" class="mx-0 my-0"></div>
<h3 class="mb-0 mt-4">Food Preferences in the US</h3>
<div class="mx-sm-auto mx-0 col-lg-6 col-12 text-center px-0">
<h5 class="mt-4 mb-4">Do you prefer soft-serve or scooped ice cream?</h5>
<div id="donut" class="mx-0 px-0 col-12 mb-1"></div>
<small>Source: <a href="https://d25d2506sfb94s.cloudfront.net/cumulus_uploads/document/np6jy2g6j4/7.9.18%20-%20Ice%20Cream%20Results.pdf"
target="blank">YouGov</a></small>
</div>
<div class="buttons text-center col-12 mt-3">
<button id="everyone" class="btn btn-secondary my-1 col-12 col-md-4 col-lg-3">Everyone surveyed</button>
<button id="women" class="btn btn-secondary my-1 col-12 col-md-4 col-lg-3">Only women surveyed</button>
<button id="men" class="btn btn-secondary my-1 col-12 col-md-4 col-lg-3">Only men surveyed</button>
</div>
<div class="mx-auto col-12 text-center">
<h5 class="mt-5 mb-0">Do you like mayonnaise?</h5>
<div id="pie" class="mt-4 mb-0"></div>
<div class="legend-pie col-12 mb-2">
<div class="d-inline"><i class="fas fa-circle strongly-like"></i> Strongly like</div>
<div class="d-inline mx-3"><i class="fas fa-circle like"></i> Like</div>
<div class="d-md-inline">
<div class="d-inline mr-3"><i class="fas fa-circle dislike"></i> Dislike</div>
<div class="d-inline mr-3"><i class="fas fa-circle strongly-dislike"></i> Strongly dislike</div>
<div class="d-inline"> <i class="fas fa-circle unsure"></i> Unsure</div>
</div>
</div>
<small>Source: <a href="https://today.yougov.com/opi/surveys/results#/survey/a085d735-9fd0-11e8-8aee-03f6e3eec9c1/question/f2ac4524-9fd0-11e8-9d11-d9c67713599d/age"
target="blank">YouGov</a></small>
</div>
<div class="buttons text-center col-12 mt-1">
<button id="group1" class="btn btn-secondary my-1 col-4 col-md-3 col-lg-2">Age 18-24</button>
<button id="group2" class="btn btn-secondary my-1 col-4 col-md-3 col-lg-2">Age 25-34</button>
<button id="group3" class="btn btn-secondary my-1 col-4 col-md-3 col-lg-2">Age 35-44</button>
<button id="group4" class="btn btn-secondary my-1 col-4 col-md-3 col-lg-2">Age 45-54</button>
<button id="group5" class="btn btn-secondary my-1 col-4 col-md-3 col-lg-2">Age 55+</button>
</div>
<h3 class="mb-0 mt-5">US Federal Minimum Wage</h3>
<div id="scatter" class="mx-auto col-md-8 col-12 mb-5"></div>
<div class="mt-3 text-right col-lg-11">
<small>Source: <a href="https://www.dol.gov/whd/minwage/chart.htm"
target="blank">United States Department of Labor</a></small>
</div>
<div className="text-center col-12">
<a href="https://github.com/kjschmidt913/data-visualization" target="blank">See the github repository</a>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.6.0/d3.min.js"></script>
<script src="barChart.js"></script>
<script src="bubbleChart.js"></script>
<script src="donutChart.js"></script>
<script src="pieChart.js"></script>
<script src="scatterPlot.js"></script>
</body>
</html>