-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·37 lines (33 loc) · 1.86 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
<!doctype HTML>
<html>
<head>
<title>The Most Dangerous Day in NYC</title>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/custom.css">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/metrics-graphics/2.11.0/metricsgraphics.css">
<link rel="stylesheet" href="bower_components/mg-regions/dist/mg_regions.css" type="text/css"/>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.js'></script>
<script src="bower_components/d3/d3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/metrics-graphics/2.11.0/metricsgraphics.js"></script>
<script src="bower_components/mg-regions/dist/mg_regions.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>The Most Dangerous Day in NYC</h1>
<p>I believe we can reduce pedestrian injuries with open data and craft more efficient ways to allocate
funding for public safety. Based on records of pedestrian collisions from NYC’s
Open Data Portal, I’ve determined the most dangerous day on record for pedestrians in the hopes of
preventing that day from ever reoccurring. Over the course of researching this dataset,
<a href="https://medium.com/wonks-this-way/the-most-dangerous-day-in-nyc-ce47547f376e#.9aty15v5q">what exactly did I learn ?</a></p>
<div class="mg-main-area-solid chart" id='monthly'></div>
<div class="mg-main-area-solid chart" id='daily'></div>
<p><strong>Source</strong>: https://data.cityofnewyork.us/Public-Safety/NYPD-Motor-Vehicle-Collisions/h9gi-nx95</p>
</div>
</div>
</div>
<script src="js/chart.js"></script>
</body>
</html>