-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
130 lines (125 loc) · 3.65 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
118
119
120
121
122
123
124
125
126
127
128
129
130
<html>
<head>
<meta charset="UTF-8">
<title>Évolution temporelle du total de collaborateurs parlementaires déclarés dans chaque Assemblée - Regards Citoyens</title>
<link rel="stylesheet" type="text/css" href="js/datatables.min.css"/>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/datatables.min.js"></script>
<script type="text/javascript" src="js/d3.js"></script>
<style>
body {
margin: auto;
}
h1, p {
margin: 0 8px;
}
.chambre {
display: inline-block;
width: 45%;
margin: 0 2%;
vertical-align: top;
}
svg {
margin-bottom: 20px;
}
.curve {
fill-opacity: 0.6;
stroke-width: 1px;
}
#deputes .curve {
fill: steelblue;
stroke: steelblue;
}
#senateurs .curve {
fill: indianred;
stroke: indianred;
}
#xaxis, #yaxis {
opacity: 0.5;
}
table {
width: 500px;
text-align: center;
}
</style>
</head>
<body>
<center>
<h1>Collaborateurs parlementaires déclarés dans chaque Assemblée</h1>
<p>par <a href="https://RegardsCitoyens.org">Regards Citoyens</a> — <a href="https://github.com/regardscitoyens/Collaborateurs-Parlement">télécharger les données</a></p>
<div id="deputes" class="chambre">
<h2>À l'Assemblée nationale</h2>
<svg></svg>
<table></table>
</div>
<div id="senateurs" class="chambre">
<h2>Au Sénat</h2>
<svg></svg>
<table></table>
</div>
</center>
</body>
<script type="text/javascript">
d3.timeFormat = d3.timeFormatLocale({
"dateTime": "%A, le %e %B %Y, %X",
"date": "%d/%m/%Y",
"time": "%H:%M:%S",
"periods": ["AM", "PM"],
"days": ["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"],
"shortDays": ["dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam."],
"months": ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"],
"shortMonths": ["janv.", "févr.", "mars", "avr.", "mai", "juin", "juil.", "août", "sept.", "oct.", "nov.", "déc."]
}).format;
function loadData(typeParl){
d3.csv("data/liste_"+typeParl+"_collaborateurs-totaux.csv", function(data){
var height = 150,
width = 500,
svg = d3.select("#"+typeParl+" svg")
.style("width", width)
.style("height", height),
xscale = d3.scaleLinear()
.domain([new Date(data[0].date), new Date()])
.range([20, width-55]),
yscale = d3.scaleLinear()
.domain([0, d3.max(data.map(function(x){ return parseInt(x.total_collabs); }))])
.range([height-25, 0]);
svg.append("path")
.attr("id", "total_collabs_"+typeParl)
.attr("class", "curve")
.attr("d", d3.area()
.curve(d3.curveStepAfter)
.x(function(x){ return xscale(new Date(x.date)); })
.y1(function(x){ return yscale(parseInt(x.total_collabs)); })
.y0(yscale(0))
(data)
);
svg.append("g")
.attr("id", "xaxis")
.attr("transform", "translate(0,"+(height-20)+")")
.call(d3.axisBottom(xscale).ticks(8).tickFormat(d3.timeFormat("%b %y")));
svg.append("g")
.attr("id", "yaxis")
.attr("transform", "translate("+(width-50)+",0)")
.call(d3.axisRight(yscale).ticks(4));
});
d3.csv("data/liste_"+typeParl+"_collaborateurs.csv", function(data){
$("#"+typeParl+" table").DataTable({
data: data.map(function(d){ return [d.parlementaire, d.collaborateur]; }),
columns: [
{title: "Parlementaire"},
{title: "Collaborateur"}
],
autoWidth: false,
scrollX: 500,
pageLength: 15,
pagingType: "full",
lengthChange: false,
});
});
}
$(document).ready(function() {
loadData("deputes");
loadData("senateurs");
});
</script>
</html>