-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 1.07 KB
/
index.html
File metadata and controls
46 lines (42 loc) · 1.07 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
<html>
<head>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script type="text/javascript" src="data.js"></script>>
</head>
<body>
<h2>
Roy Tang: I parsed the data into JSON format, press Option + Command + J on Chrome to view it in the console.
</h2>
<pre>
Structure of JSON Data: expand to see specifics of that vote
Meeting(number)
Vote(number)
individual-votes
members
.
.
motion details
.
.
vote summary
.
.
</pre>
<h2>Stats</h2>
<ul>
<li><p>37 Council meetings involving votes</p></li>
<li><p>Number of motions: 400</p></li>
<li><p>On 17/05/2017, there were 165 motions voted</p></li>
<li><p>Total number of votes: 26882</p></li>
<li><p>Vote of "Yes": 8077</p></li>
<li><p>Vote of "No": 9728</p></li>
<li><p>Vote of "Abstain": 993</p></li>
<li><p>Vote of "Absent": 7545</p></li>
<li><p>Vote of "Present": 539</p></li>
<li><p>28.07% of votes were "Absent"</p></li>
</ul>
<script type="text/javascript">
loadData();
</script>
</body>
</html>