-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (107 loc) · 5.06 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>D3 Times</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/d3Style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="jumbotron text-center col-xs-12 col-md-12">
<h1>Data Journalism About Health</h1>
<p>Discover the increase in health risks with income, age, obesity, and smoking in the US.</p>
</div>
</div>
<!-- Navbar -->
<div class="text-center">
<p>
<button class="btn btn-danger" type="button" data-toggle="collapse" href="#AgeIncome" role="button" aria-expanded="false" aria-controls="AgeIncome">
Health Risks Per Age + Income
</button>
<button class="btn btn-warning" type="button" data-toggle="collapse" data-target="#SmokingRange" aria-expanded="false" aria-controls="SmokingRange">
Smoking Range Per Age + Income
</button>
<button class="btn btn-dark" type="button" data-toggle="collapse" data-target="#Obesity" aria-expanded="false" aria-controls="Obesity">
Obesity Rate Per Age + Income
</button>
</p>
<div class="collapse" id="AgeIncome">
<div class="card card-body">
<li>Higher income rate and mid-high age range (i.e. Maryland) have lower risks in the health.</li>
<li>Lower income rate and higher age range (i.e. Texas) have higher risks in health.</li>
</div>
</div>
<div class="collapse" id="SmokingRange">
<div class="card card-body">
<li>Lower percentage rate in the state (i.e. Utah) have lower health risk, but have higher income at a young age.</li>
<li>However, higher percentage rate in the state (i.e. West Virginia) have higher health risk, but have lower income at a higher age range.</li>
</div>
</div>
<div class="collapse" id="Obesity">
<div class="card card-body">
<li>Poverty rate increases as the obesity rate increases.</li>
<li>
In addition to poverty rate increases as the obesity rate increases,
higher percentage of obesity rate in each state grows as the age gets older.
</li>
</div>
</div>
</div>
<!-- Navbar ends here -->
<div class="row">
<div class="col-xs-12 col-md-9">
<div id="scatter">
<!-- Append chart here. -->
</div>
</div>
</div>
<!-- Hide this redundant info -->
<!-- <div class="row">
<div class="col-xs-12 col-md-9">
<div class="article">
<h2>Health Risks VS. Age & Income</h2>
<p>
<ul>
<li>Higher income rate and mid-high age range (i.e. Maryland) have lower risks in the health.</li>
<li>Lower income rate and higher age range (i.e. Texas) have higher risks in health.</li>
</ul>
</p>
<h2>Smoking Range VS. Age & Income</h2>
<p>
<ul>
<li>Lower percentage rate in the state (i.e. Utah) have lower health risk, but have higher income at a young age.</li>
<li>However, higher percentage rate in the state (i.e. West Virginia) have higher health risk, but have lower income at a higher age range.</li>
</ul>
</p>
<h2>Obesity Rate VS. Age & Income</h2>
<p>
<ul>
<li>Poverty rate increases as the obesity rate increases.</li>
<li>
In addition to poverty rate increases as the obesity rate increases,
higher percentage of obesity rate in each state grows as the age gets older.
</li>
</ul>
</p>
</div>
</div>
</div> -->
<!-- Hide the redundant info ends here -->
</div>
<!-- Footer-->
<div id="footer">
<p>Erika Yi © 2020</p>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script type="text/javascript" src="assets/js/app.js"></script>
<script type="text/javascript" src="assets/js/function.js"></script>
<script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-tip/0.7.1/d3-tip.min.js"></script>
</body>
</html>