-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (61 loc) · 2.79 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles/delitos_sexuales.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Oswald:400,600" rel="stylesheet">
<script type="text/javascript" src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
</head>
<body>
<div class="heading">
<div class="title">
<h1><span>Why you shouldn't go out on the 1st of each month</span></h1>
</div>
<div class="description">
<p>
The Criminality Information Group of the Colombian Police published more than 27,000 records of sexual crimes commited during the year 2016.
Based on this information, I decided to start a small project in order to visualize the data and extract
insights that may (or may not) be useful in addressing the issue.</br>
</p>
</div>
</div>
<div class="divide"></div>
<div class="section graphic zigzag">
<h1>–</h1>
<h2><span>Sexual crimes by day and month</span></h2>
<div class="description">
<p>
The following graphic shows the number of sexual crimes registered in Colombia during 2016, organized by day and month.
As you can see, the first day of each month is when most of the crimes were commited.</br>
</p>
</div>
<div class="graph">
<script type="text/javascript" src="delitos_sexuales.js"></script>
</div>
</div>
<div class="section zigzag">
<div class="title">
<h2><span>Just kidding.</span></h2>
</div>
<div class="description">
<p>
As these conclusions depend entirely on the trustworthiness of the raw data and a small amount of pre processing, they should not be taken very seriously.
Rather, this project should show how useful an adequate process of data collection would be in tackling these crimes.
Let's share this and put some pressure on our government to ensure quality in the data they recover!
</p>
<div class="social">
<span class="icon"><i class="fab fa-facebook-square"></i></span>
<span class="icon"><i class="fab fa-twitter-square"></i></span>
<span class="icon"><i class="fab fa-linkedin"></i></span>
</div>
</div>
</div>
<footer class="footer">
<p>
Visualization by: Mariana Villamizar Rodríguez</br>
<i>Data from <a href="https://www.datos.gov.co/Seguridad-y-Defensa/Delitos-Sexuales-2016/3j7m-zgyi">Datos Abiertos</a></i>
</p>
</footer>
</body>
</html>