This repository has been archived by the owner on Jun 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
847 lines (796 loc) · 48.2 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
<!DOCTYPE html>
<html>
<head lang="en">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Projects related to the European Parliament</title>
<link rel="stylesheet" type="text/css" href="fonts/font.css" />
<style type="text/css">
body {
padding-left: 10%;
padding-right: 10%;
}
h1, h2, h3, h4, h5, h6 {
font-family: Quando, Helvetica, Verdana, sans-serif;
}
h2 {
border-bottom: 1px solid lightgrey;
}
.warning:before {
content:"Warning";
font-weight: bold;
font-size: 0.6em;
font-family: Helvetica, Verdana, sans-serif;
padding-left: 0.3em;
padding-right: 0.3em;
margin-right: 0.5em;
color: #514721;
background-color: #FFF6BF;
border: 1px solid #FFD324;
}
.donate kbd {
display: inline-block;
color: #555;
vertical-align: middle;
padding: 0.1em;
padding-left: 0.3em;
padding-right: 0.3em;
background-color: #fcfcfc;
border: solid 1px #ccc;
border-bottom-color: #bbb;
border-radius: 0.3em;
box-shadow: inset 0 -1px 0 #bbb;
font-family: Helvetica, Verdana, sans-serif;
}
</style>
<link rel="shortlink" type="text/html" href="https://joelpurra.com/r/euparl" />
</head>
<body>
<h1>
<a href="https://joelpurra.com/projects/european-parliament/">Projects related to the European Parliament</a>
</h1>
<section>
<h2>
Resources
</h2>
<ul>
<li>
<a href="https://joelpurra.com/projects/european-parliament/">This page</a>
</li>
<li>
<a href="http://europarl.me/">Europarl.me</a>: this code was initially written during the hackathon in January 2014.
</li>
<li>
<a href="http://parltrack.euwiki.org/">Parltrack</a>: the upstream data source, licensed under the <a href="https://opendatacommons.org/licenses/odbl/">Open Database License</a>.
</li>
</ul>
</section>
<section>
<h2>
Disclaimer
</h2>
<p>
<em>The data has not yet been verified to be correct!</em>
</p>
<p>
While some of the results of the findings here are very interesting, they have not yet been properly verified. They could be wrong, they could be right. If you can help everyone out by verifying that the data from Parltrack, and the scripting in the open source projects, is correct - please do! There is currently (2014-01-28) work in progress to require machine-readable sources of data straight from the European Parliament, but until that has been resolved, keep in mind that this data is based upon parsing PDF-files meant for human eyes and paper printer consumption.
</p>
<p>
The data has not been filtered to reflect any opinions on votings, voters or votes. The data has only been reduced to include only votings with recorded corrections.
</p>
</section>
<section>
<h2>
What is a corrected vote?
</h2>
<p>
During votings in the <a href="https://en.wikipedia.org/wiki/European_Parliament">European Parliament</a> (EP), each elected and present <a href="https://en.wikipedia.org/wiki/Member_of_the_European_Parliament">Member of the European Parliament</a> (MEP) record their votes. Choices are For, Abstain and Against. If they discover that they made the wrong choice, they themselves can record their vote as being incorrect. This doesn't change the outcome of the voting, it is only done after the votes have been counted.
</p>
<p>
My inital thought regarding these corrected votes, is that they are purely erroneous button clicks in the electronic voting process. The number of corrected votes during certain votings, the number of corrected votes some individual MEPs have recorded and the obvious group belongings of the correctors, seem to tell a different story though. I now leave it up to you to dig deeper. I will be here to assist, if there are questions or suggestions.
</p>
</section>
<section>
<h2>
Donate
</h2>
<p>
<em>This data, research, software, and analysis is driven by volunteer work and shared completely free.</em> You even get the source code and data for free. To develop open source software is not without cost though — it takes technical knowledge, time, and effort.
</p>
<p>
<em>You don't have to be a developer to support data-driven research!</em> If you want to receive personal support, or just feel all warm and fuzzy inside from helping open source development, donations are very welcome.
</p>
<p class="donate">
<a href="https://joelpurra.com/donate/proceed/?amount=5¤cy=usd"><kbd>Donate $5 now</kbd></a>
<a href="https://joelpurra.com/donate/proceed/?amount=25¤cy=usd"><kbd>Donate $25 now</kbd></a>
<a href="https://joelpurra.com/donate/proceed/?amount=100¤cy=usd&invoice=true"><kbd>Donate $100 now</kbd></a>
<a href="https://joelpurra.com/donate/"><kbd>More options</kbd></a>
</p>
</section>
<section>
<h2>
Open source projects
</h2>
<p>
The power is in your hands.
<em>Use the source, Luke!</em>
</p>
<ul>
<li>
<a href="https://github.com/joelpurra/ep-the-corrections">ep-the-corrections</a>: generates the HTML reports, based on data from ep-erroneous-votes.
</li>
<li>
<a href="https://github.com/joelpurra/ep-erroneous-votes">ep-erroneous-votes</a>: transforms EP voting data to only include corrected votes.
</li>
<li>
<a href="https://github.com/joelpurra/ep-projects">ep-projects</a>: the source code for this page.
</li>
</ul>
</section>
<section>
<h2>
Output
</h2>
<p>
Votings in the European Parliament that have corrections.
</p>
<section>
<h3>
<time datetime="2015-05-30T09:25:16Z" title="2015-05-30T09:25:16Z">
2015-05-30T09:25:16Z
</time>
</h3>
<p>
Changes: generated complete data for term 7. Added a summary to each dataset. Also rendered the same data for term 5 and 8, but there are no recorded corrected votes.
</p>
<ul>
<li>
Based on <a href="http://parltrack.euwiki.org/dumps/ep_votes.json.xz">Parltrack's ep_votes.json from 2015-05-22</a>.
</li>
<li>
<span class="warning">This data still (always) needs further verification!</span>
</li>
</ul>
<h4>Term 7</h4>
<ul>
<li>Most recent, unfiltered voting: 2014-04-17T16:24:11</li>
<li>Total, unfiltered votings: 7 283</li>
<li>Total, corrected votes: 16 475</li>
<li>
Metadata/aggregate data about the dataset: <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-7/">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-7/aggregates.json">data dump</a>.
</li>
<li>
Votings with corrections: <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-7/erroneous-votes.html">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-7/ep_votes.term.votings-with-correctionals.mapped.sorted.json">data dump</a>.
</li>
<li>
MEPs ordered by number of corrections: <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-7/grouped-by-mep.html">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-7/ep_votes.term.votings-with-correctionals.mapped.mep-objects.corrections.grouped-by-mep.json">data dump</a>.
</li>
</ul>
<h4>Term 6</h4>
<ul>
<li>Most recent, unfiltered voting: 2009-05-07T16:09:04</li>
<li>Total, unfiltered votings: 6 385</li>
<li>Total, corrected votes: 8 445</li>
<li>
Metadata/aggregate data about the dataset: <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-6/">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-6/aggregates.json">data dump</a>.
</li>
<li>
Votings with corrections: <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-6/erroneous-votes.html">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-6/ep_votes.term.votings-with-correctionals.mapped.sorted.json">data dump</a>.
</li>
<li>
MEPs ordered by number of corrections: <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-6/grouped-by-mep.html">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-6/ep_votes.term.votings-with-correctionals.mapped.mep-objects.corrections.grouped-by-mep.json">data dump</a>.
</li>
</ul>
</section>
<details>
<summary>View older data sets</summary>
<section>
<h3>
<time datetime="2014-02-13T20:27:21Z" title="2014-02-13T20:27:21Z">
2014-02-13T20:27:21Z
</time>
</h3>
<p>
Changes: Added two new generated files: one with automated metadata/aggregate data about the dataset, and one with a table of the MEPs' corrections.
</p>
<ul>
<li>
Based on <a href="http://parltrack.euwiki.org/dumps/ep_votes-dedup-clean.json.xz">Parltrack's ep_votes-dedup-clean.json from 2014-01-30 01:21</a>.
</li>
<li>
<span class="warning">This data has been cleaned up from thousands of duplicated votings, but still needs further verification! See logs from 2014-01-29.</span>
</li>
</ul>
<h4>Term 7</h4>
<ul>
<li>Most recent, unfiltered voting: 2014-01-16T16:25:01</li>
<li>Total, unfiltered votings: 5 606</li>
<li>Total, corrected votes: 15 012</li>
<li>
Metadata/aggregate data about the dataset: <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-7/">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-7/aggregates.json">data dump</a>.
</li>
<li>
Votings with corrections: <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-7/erroneous-votes.html">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-7/correctionals.json">data dump</a>.
</li>
<li>
MEPs ordered by number of corrections: <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-7/grouped-by-mep.html">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-7/correctionals.grouped-by-mep.json">data dump</a>.
</li>
</ul>
<h4>Term 6</h4>
<ul>
<li>Most recent, unfiltered voting: 2009-05-07T16:09:04</li>
<li>Total, unfiltered votings: 6 385</li>
<li>Total, corrected votes: 8 445</li>
<li>
Metadata/aggregate data about the dataset: <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-6/">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-6/aggregates.json">data dump</a>.
</li>
<li>
Votings with corrections: <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-6/erroneous-votes.html">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-6/correctionals.json">data dump</a>.
</li>
<li>
MEPs ordered by number of corrections: <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-6/grouped-by-mep.html">human-readable</a>, <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-02-13T202721Z/term-6/correctionals.grouped-by-mep.json">data dump</a>.
</li>
</ul>
</section>
<section>
<h3>
<time datetime="2014-01-30T19:17:19Z" title="2014-01-30T19:17:19Z">
2014-01-30T19:17:19Z
</time>
</h3>
<p>
Changes: separate output per term in the European Parliament. This will likely be the only time the fifth term is included, because there is no voting data for term 5 available in Parltrack.
</p>
<ul>
<li>
Based on <a href="http://parltrack.euwiki.org/dumps/ep_votes-dedup-clean.json.xz">Parltrack's ep_votes-dedup-clean.json from 2014-01-30 01:21</a>.
</li>
<li>
<span class="warning">This data has been cleaned up from thousands of duplicated votings, but still needs further verification! See logs from 2014-01-29.</span>
</li>
</ul>
<h4>Term 7</h4>
<ul>
<li>Least recent, unfiltered voting: 2009-09-14T17:24:51</li>
<li>Most recent, unfiltered voting: 2014-01-16T16:25:01</li>
<li>Total, unfiltered votings: 5.606</li>
<li>Total, unfiltered votes: 3.538.437</li>
<li>Total, corrected votes: 15.012</li>
<li>Least recent, unfiltered voting with corrections: 2009-09-14T17:24:51</li>
<li>Most recent, unfiltered voting with corrections: 2014-01-16T16:25:01</li>
<li>Total, votings with corrections: 4.352</li>
<li>Total, votes in votings with corrections: 2.787.470</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-7/">Human-readable format of votings with corrections, for analysis.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-7/correctionals.json">Data dump with votings with corrections.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-7/correctionals.grouped-by-mep.json">Data dump of MEPs (grouped by database ID or name) who have made corrections, ordered by number of corrections in ascending order.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-7/aggregates.json">Data dump with aggregate values.</a>
</li>
</ul>
<h4>Term 6</h4>
<ul>
<li>Least recent, unfiltered voting: 2004-09-15T12:11:38</li>
<li>Most recent, unfiltered voting: 2009-05-07T16:09:04</li>
<li>Total, unfiltered votings: 6.385</li>
<li>Total, unfiltered votes: 3.860.776</li>
<li>Total, corrected votes: 8.445</li>
<li>Least recent, unfiltered voting with corrections: 2007-01-18T12:06:49</li>
<li>Most recent, unfiltered voting with corrections: 2009-05-07T12:49:45</li>
<li>Total, votings with corrections: 2.786</li>
<li>Total, votes in votings with corrections: 1.745.326</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-6/">Human-readable format of votings with corrections, for analysis.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-6/correctionals.json">Data dump with votings with corrections.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-6/correctionals.grouped-by-mep.json">Data dump of MEPs (grouped by database ID or name) who have made corrections, ordered by number of corrections in ascending order.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-6/aggregates.json">Data dump with aggregate values.</a>
</li>
</ul>
<details>
<summary>View term 5 data</summary>
<h4>Term 5</h4>
<ul>
<li>Least recent, unfiltered voting: null</li>
<li>Most recent, unfiltered voting: null</li>
<li>Total, unfiltered votings: 0</li>
<li>Total, unfiltered votes: 0</li>
<li>Total, corrected votes: 0</li>
<li>Least recent, unfiltered voting with corrections: null</li>
<li>Most recent, unfiltered voting with corrections: null</li>
<li>Total, votings with corrections: 0</li>
<li>Total, votes in votings with corrections: 0</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-5/">Human-readable format of votings with corrections, for analysis.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-5/correctionals.json">Data dump with votings with corrections.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-5/correctionals.grouped-by-mep.json">Data dump of MEPs (grouped by database ID or name) who have made corrections, ordered by number of corrections in ascending order.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T191719Z/term-5/aggregates.json">Data dump with aggregate values.</a>
</li>
</ul>
</details>
</section>
<section>
<h3>
<time datetime="2014-01-30T16:12:14Z" title="2014-01-30T16:12:14Z">
2014-01-30T16:12:14Z
</time>
</h3>
<p>
Changes: publishing aggregate data in a JSON file, showing how many occurances each MEP name variation has.
</p>
<ul>
<li>
Based on <a href="http://parltrack.euwiki.org/dumps/ep_votes-dedup-clean.json.xz">Parltrack's ep_votes-dedup-clean.json from 2014-01-30 01:21</a>.
</li>
<li>Total, unfiltered votings: 11.991</li>
<li>Total, unfiltered votes: 7.399.213</li>
<li>Total, corrected votes: 23.457</li>
<li>Total, votings with corrections: 7.138</li>
<li>Total, votes in votings with corrections: 4.532.796</li>
<li>
<span class="warning">This data has been cleaned up from thousands of duplicated votings, but still needs further verification! See logs from 2014-01-29.</span>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T161214Z/">Human-readable format of votings with corrections, for analysis.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T161214Z/correctionals.json">Data dump with votings with corrections.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T161214Z/correctionals.grouped-by-mep.json">Data dump of MEPs (grouped by database ID or name) who have made corrections, ordered by number of corrections in ascending order.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T161214Z/aggregates.json">Data dump with aggregate values.</a>
</li>
</ul>
</section>
<section>
<h3>
<time datetime="2014-01-30T01:33:32Z" title="2014-01-30T01:33:32Z">
2014-01-30T01:33:32Z
</time>
</h3>
<p>
Changes: used a new dataset from Parltrack, that removed 2142 duplicate votings, plus has the right MEP database IDs.
</p>
<ul>
<li>
Based on <a href="http://parltrack.euwiki.org/dumps/ep_votes-dedup-clean.json.xz">Parltrack's ep_votes-dedup-clean.json from 2014-01-30 01:21</a>.
</li>
<li>Total, unfiltered votings in dataset: 11.982</li>
<li>Total, unfiltered votes in dataset: 7.397.461</li>
<li>Total, filtered votings (with corrections) in dataset: 7.138</li>
<li>Total, filtered votes (in votings with corrections) in dataset: 4.532.796</li>
<li>Total, corrected votes in dataset: 23.457</li>
<li>
<span class="warning">This data has been cleaned up from thousands of duplicated votings, but still needs further verification! See logs from 2014-01-29.</span>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T013332Z/">Human-readable format, for analysis.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T013332Z/correctionals.json">Data dump.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-30T013332Z/correctionals.grouped-by-mep.json">Data dump of MEPs (grouped by database ID or name) who have made corrections, ordered by number of corrections in ascending order.</a>
</li>
</ul>
</section>
<section>
<h3>
<time datetime="2014-01-29T23:44:56Z" title="2014-01-29T23:44:56Z">
2014-01-29T23:44:56Z
</time>
</h3>
<p>
Since the statistics, these and before this date, are run over the complete data set, it doesn't take the five year parliament terms into consideration.
</p>
<p>
Changes: used a new dataset from Parltrack, that removed 2142 duplicate votings.
</p>
<ul>
<li>
Based on <a href="http://parltrack.euwiki.org/dumps/ep_votes-dedup.json.xz">Parltrack's ep_votes-dedup.json from 2014-01-29 22:19</a>.
</li>
<li>Total, unfiltered votings in dataset: 11.982</li>
<li>Total, unfiltered votes in dataset: 7.397.461</li>
<li>Total, filtered votings (with corrections) in dataset: 7.138</li>
<li>Total, filtered votes (in votings with corrections) in dataset: 4.532.796</li>
<li>Total, corrected votes in dataset: 23.457</li>
<li>
<span class="warning">This data has been cleaned up from thousands of duplicated votings, but still needs further verification! See logs from 2014-01-29.</span>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-29T234456Z/">Human-readable format, for analysis.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-29T234456Z/correctionals.json">Data dump.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-29T234456Z/correctionals.grouped-by-mep.json">Data dump of MEPs (grouped by database ID or name) who have made corrections, ordered by number of corrections in ascending order.</a>
</li>
</ul>
</section>
<section>
<h3>
<time datetime="2014-01-29T16:48:39Z" title="2014-01-29T16:48:39Z">
2014-01-29T16:48:39Z
</time>
</h3>
<p>
Changes: improved links to MEPs pages on Parltrack.
</p>
<ul>
<li>
Based on <a href="http://parltrack.euwiki.org/dumps/ep_votes-2ndcleaning.json.xz">Parltrack's ep_votes-2ndcleaning.json from 2014-01-29 01:41</a>.
</li>
<li>Total, unfiltered votings in dataset: 14.124</li>
<li>Total, unfiltered votes in dataset: 8.770.020</li>
<li>
<span class="warning">This data contains thousands of duplicated votings, and needs further verification! See logs from 2014-01-29.</span>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-29T164839Z/">Human-readable format, for analysis.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-29T164839Z/correctionals.json">Data dump.</a>
</li>
</ul>
</section>
<section>
<h3>
<time datetime="2014-01-28T23:10:51Z" title="2014-01-28T23:10:51Z">
2014-01-28T23:10:51Z
</time>
</h3>
<p>
Changes: removed empty links to dossiers.
</p>
<ul>
<li>
Based on <a href="http://parltrack.euwiki.org/dumps/ep_votes.json.xz">Parltrack's ep_votes.json from 2014-01-28 02:35</a>.
</li>
<li>Total, unfiltered votings in dataset: 14.124</li>
<li>Total, unfiltered votes in dataset: 8.770.020</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-28T231051Z/">Human-readable format, for analysis.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-28T231051Z/correctionals.json">Data dump.</a>
</li>
<li>
<span class="warning">Data with parsed names have been removed for now, see log entry from 2014-01-29.</span>
</li>
<li>
<strike>Data dump with normalized MEP names.</strike>
</li>
<li>
<strike>List of MEPs (grouped by name) who have made corrections, ordered by number of corrections in ascending order.</strike>
</li>
</ul>
</section>
<section>
<h3>
<time datetime="2014-01-27T15:10:38Z" title="2014-01-27T15:10:38Z">
2014-01-27T15:10:38Z
</time>
</h3>
<p>
Changes: votings are now listed by voting timestamp, in descending order.
</p>
<ul>
<li>
Based on <a href="http://parltrack.euwiki.org/dumps/ep_votes.json.xz">Parltrack's ep_votes.json from 2014-01-27 02:39</a>.
</li>
<li>Total, unfiltered votings in dataset: 14.124</li>
<li>Total, unfiltered votes in dataset: 8.770.020</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-27T151038Z/">Human-readable format, for analysis.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-27T151038Z/correctionals.json">Data dump.</a>
</li>
<li>
<span class="warning">Data with parsed names have been removed for now, see log entry from 2014-01-29.</span>
</li>
<li>
<strike>Data dump with normalized MEP names.</strike>
</li>
<li>
<strike>List of MEPs (grouped by name) who have made corrections, ordered by number of corrections in ascending order.</strike>
</li>
</ul>
</section>
<section>
<h3>
<time datetime="2014-01-27T12:48:32Z" title="2014-01-27T12:48:32Z">
2014-01-27T12:48:32Z
</time>
</h3>
<ul>
<li>
Based on <a href="http://parltrack.euwiki.org/dumps/ep_votes.json.xz">Parltrack's ep_votes.json from 2014-01-27 02:39</a>.
</li>
<li>Total, unfiltered votings in dataset: 14.124</li>
<li>Total, unfiltered votes in dataset: 8.770.020</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-27T124832Z/">Human-readable format, for analysis.</a>
</li>
<li>
<a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-27T124832Z/correctionals.json">Data dump.</a>
</li>
<li>
<span class="warning">Data with parsed names have been removed for now, see log entry from 2014-01-29.</span>
</li>
<li>
<strike>Data dump with normalized MEP names.</strike>
</li>
<li>
<strike>List of MEPs (grouped by name) who have made corrections, ordered by number of corrections in ascending order.</strike>
</li>
</ul>
</section>
</details>
</section>
<section>
<h2>
Media coverage
</h2>
<section>
<section>
<h3>
<time datetime="2014-03-17" title="2014-03-17">
2014-03-17
</time>
Mandag Morgen:
<a href="https://www.mm.dk/cyberaktivister-stormloeb-eu%E2%80%99s-data">Cyberaktivister i stormløb på EU’s data</a>
(danish, paywalled)
</h3>
<p>
Article in <a href="https://www.mm.dk/">MM.dk</a>, a Danish think tank, by <a href="http://baumedier.dk/">Andreas Baumann</a>, about the fight for Open Data in the EU including the digging for corrected votes.
</p>
<blockquote>
The fight for digital openness is a movement of data democrats armed with laptops, who bit by bit create order out of the chaos of data that the political processes create.</blockquote>
<blockquote>
A growing movement of activists fighting for the rights of citizens to know what is going on in the EU closed law making machine. Armed with laptops and open data they create structure in the myriad of data by EU institutions produce. Thanks to them, you can see that Poul Rasmussen and Britta Thomsen, the EU parliamentarians who most often corrects their votes - after they have been submitted. We try to make the democratic institutions of the EU to breathe easier, says the German data journalist Friedrich Lindenberg to Monday Morning. Data Democracy in Europe is under construction.
</blockquote>
</section>
<section>
<h3>
<time datetime="2014-02-04" title="2014-02-04">
2014-02-04
</time>
Altinget.dk:
<a href="https://altinget.dk/artikel/danske-socialdemokrater-er-eu-mestre-i-stemmeaendring">Danske socialdemokrater er EU-mestre i stemmeændring</a>
(danish)
</h3>
<p>
Article in <a href="https://altinget.dk/">Altinget.dk</a>, a Danish political newspaper, by <a href="http://www.rikkealbrechtsen.dk/">Rikke Albrechtsen</a>, about the Danish social democrat MEPs and their comparatively high number of corrected votes.
</p>
<blockquote>
Looking for errors: Danish Social Democrats in the European Parliament are those among all EU elected representatives, who most often corrects their votes. Not credible, says the man behind the collected data. Democratic diligence is the answer from the list's top scorer, Britta Thomsen.
</blockquote>
<h4>
Syndication
</h4>
<ul>
<li>
Ekstra Bladet:
<a href="https://ekstrabladet.dk/nyheder/politik/article2212313.ece">Danske socialdemokrater er EU-mestre i stemmeændring</a>
(danish)
</li>
<li>
TV2 Fyn:
<a href="http://www.tv2fyn.dk/article/448186:Dan-Joergensen-aendrede-stemme-493-gange">Dan Jørgensen ændrede stemme 493 gange</a>
(danish)
</li>
<li>
MitFyn.dk:
<a href="http://www.mitfyn.dk/article/205138">S: Stemmer et - men mener noget andet</a>
(danish)
</li>
<li>
Kristeligt Dagblad:
<a href="https://www.kristeligt-dagblad.dk/artikel/544130:Danmark--Danske-socialdemokrater-er-EU-mestre-i-stemmeaendring">Danske socialdemokrater er EU-mestre i stemmeændring</a>
(danish)
</li>
</ul>
</section>
</section>
<section>
<h3>Project mentionings</h3>
<ul>
<li>
EuroNews.com:
<a href="http://www.euronews.com/2014/01/29/europarl-hackathon-48-hours-to-free-european-parliament-data">Europarl Hackathon : 48 hours to free European Parliament data</a>
</li>
<li>
EuroNews.com:
<a href="http://fr.euronews.com/2014/01/29/europarl-hackaton-48h-pour-liberer-les-donnees-du-parlement-europeen/">Europarl Hackathon : 48h pour libérer les données du Parlement européen</a>
(french)
</li>
<li>
La Vanguardia: <a href="http://blogs.lavanguardia.com/tecladomovil/?p=1736">E-uropa: hackers y democracia</a>
(spanish)
</li>
<li>
The Guardian:
<a href="https://www.theguardian.com/technology/2014/jan/28/hackers-hold-the-european-parliament-to-account">Hackers hold the European parliament to account</a>
</li>
<li>
EuroParl.me: <a href="http://europarl.me/analysing-the-corrected-votes-of-the-meps">Analysing the corrected votes of the MEPs</a>
</li>
<li>
Mondiaal Nieuws: <a href="http://www.mo.be/analyse/de-zwarte-doos-van-europese-besluitvorming">De zwarte doos van Europese besluitvorming</a> (dutch)
</li>
</ul>
</section>
</section>
<section>
<h2>
Log
</h2>
<section>
<h3>
<time datetime="2015-05-30" title="2015-05-30">
2015-05-30
</time>
Full data for term 7, no corrected vote data for term 8
</h3>
<p>
After looking at the most recent data from Parltrack, I was surprised to see that the "correctionals" were gone from term 8. The Parltrack developers seem surprised as well, as they <a href="https://github.com/pudo/parltrack/issues/24">can't find the data in the source documents from the European Parliament</a>. We hope to find the reason for this reduced amount of information, but until then feast your eyes on the analysis of the <a href="https://files.joelpurra.com/projects/european-parliament/output/2015-05-30T092516Z/term-7/">full dataset of term 7</a>, which was previously not published here.
</p>
</section>
<section>
<h3>
<time datetime="2014-02-13" title="2014-02-13">
2014-02-13
</time>
Graph over corrected votes per MEP
</h3>
<p>
Added two new generated files: one with automated metadata/aggregate data about the dataset, and one with a table of the MEPs' corrections. The list has a built-in simple bar graph, which will make it just a tad bit easier to get an overview of the difference in number of corrected votes.
</p>
</section>
<details>
<summary>View older log entries</summary>
<section>
<h3>
<time datetime="2014-01-30" title="2014-01-30">
2014-01-30
</time>
Results per European Parliament term
</h3>
<p>
There have been several requests to split the voting data per term, so now that is done for term 5, 6 and 7. Unfortunately, there are no corrections (recorded or extracted) from 2004, 2005 and 2006 - it's missing from the upstream dataset. Term 5 is only there to verify that there are no votes that are from that term, and will likely be excluded until there is. Hopefully there this will also lead to more automation of data exports.
</p>
</section>
<section>
<h3>
<time datetime="2014-01-29" title="2014-01-29">
2014-01-29
</time>
Duplicated votings found in Parltrack's upstream data
</h3>
<p>
This evening, at least 2136 duplicate votings were found. They seem to stem from the fact that he has been sent duplicate lists, but under different voting titles or languages. This is yet another reason why being delivered original data directly from the European Parliament is important!
</p>
<p>
Update: a new, deduplicated dataset has been released from Parltrack. The dumps on this page, from 2014-01-29T23:44:56Z, should be based on it.
</p>
</section>
<section>
<h3>
<time datetime="2014-01-29" title="2014-01-29">
2014-01-29
</time>
JSON with normalized and worst offenders list found to have incorrect MEP names
</h3>
<p>
Thanks to a journalist, errors propagated to the data with normalized names, which is the source for the lists of "worst offenders", have been discovered!
</p>
<p>
Since the data source in Parltrack is PDF files, which is far from optimal, there are sometimes problems with parsing them into a usable database. Having incorrect names affects the total count, since the totals have been grouped by name. This is the most recently released <a href="https://files.joelpurra.com/projects/european-parliament/output/2014-01-28T231051Z/worst-offenders.txt">list of MEPs (grouped by name) who have made corrections, ordered by number of corrections in ascending order</a> -
<em>it contains the incorrect grouping</em>. The other lists have been unlinked, at least for now, and I'll work on a solution.
</p>
</section>
<section>
<h3>
<time datetime="2014-01-28" title="2014-01-28">
2014-01-28
</time>
Added a disclaimer and an attempt at explaining corrected votes
</h3>
<p>
Until the data has been verified by others, I would take it with a grain of salt. If you are apt at verifying data like this, please help out!
</p>
</section>
<section>
<h3>
<time datetime="2014-01-27" title="2014-01-27">
2014-01-27
</time>
Publication on <a href="http://europarl.me/">Europarl.me</a>
</h3>
<p>
Now that the hackathon is officially over, there is a list of projects people have worked on. <a href="http://europarl.me/analysing-the-corrected-votes-of-the-meps">These projects are listed there!</a>
</p>
</section>
<section>
<h3>
<time datetime="2014-01-26" title="2014-01-26">
2014-01-26
</time>
Start of the <a href="https://github.com/joelpurra/ep-the-corrections">ep-the-corrections</a> data visualization project
</h3>
<p>
The corrected vote data broken out in <a href="https://github.com/joelpurra/ep-erroneous-votes">ep-erroneous-votes</a> is being used to present a long list of votes. Not sure this would be called visalization, but with the help of investigative journalists, I'm sure something will come up!
</p>
</section>
<section>
<h3>
<time datetime="2014-01-25" title="2014-01-25">
2014-01-25
</time>
Start of the <a href="https://github.com/joelpurra/ep-erroneous-votes">ep-erroneous-votes</a> data transformation project
</h3>
<p>
It would be interesting to look at corrected votes in the European Parliament. How many are there, is there a pattern and such. Here's the start of a narrowed down dataset, with only voting that have corrections and only those who corrected their votes.
</p>
</section>
<section>
<h3>
<time datetime="2014-01-24" title="2014-01-24">
2014-01-24
</time>
Start of the <a href="http://europarl.me/">Europarl Hackathon</a>
</h3>
<p>
Brainstorming and development starts, during the <a href="http://europarl.me/">Europarl Hackathon</a>, in preparation for the <a href="http://www.elections2014.eu/">European elections 2014</a>.
</p>
</section>
</details>
</section>
<footer class="container">
<hr />
<p>
<a href="https://github.com/joelpurra/ep-projects" rel="source">Projects related to the European Parliament</a> © 2014, 2015, 2016, 2017 <a href="https://joelpurra.com/" rel="author me">Joel Purra</a>.
</p>
<ul>
<li>Data is made available under the <a href="http://opendatacommons.org/licenses/odbl/1.0/" rel="external license">Open Database License 1.0</a>.</li>
<li>Any rights in individual contents of the database are licensed under the <a href="http://opendatacommons.org/licenses/dbcl/1.0/" rel="external license">Database Contents License 1.0</a>.</li>
<li>Site content licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="external license">CC BY-SA 4.0</a>.</li>
<li>Code licensed according to terms in each separate project.</li>
</ul>
<p>
Using data on erroneous/corrected votes in <a href="https://github.com/joelpurra/ep-erroneous-votes">ep-erroneous-votes</a>, based on <a href="http://parltrack.euwiki.org/dumps" rel="external">open data dumps</a> from <a href="http://parltrack.euwiki.org/" rel="external">Parltrack</a> licensed under the <a href="http://opendatacommons.org/licenses/odbl/" rel="external license">Open Database License</a>, to visualize erroneous, and subsequently corrected, votes by <a href="http://www.europarl.europa.eu/meps/" rel="external">Members</a> of the <a href="http://www.europarl.europa.eu/" rel="external">European Parliament</a>.
</p>
<p>
Part of the <a href="https://joelpurra.com/projects/european-parliament/" rel="home">projects related to the European Parliament</a>. Developed during the <a href="http://europarl.me/">Europarl Hackathon</a>, in preparation for the <a href="http://www.elections2014.eu/">European elections 2014</a>.
</p>
<p class="donate">
<a href="https://joelpurra.com/donate/proceed/?amount=5¤cy=usd"><kbd>Donate $5 now</kbd></a>
<a href="https://joelpurra.com/donate/proceed/?amount=25¤cy=usd"><kbd>Donate $25 now</kbd></a>
<a href="https://joelpurra.com/donate/proceed/?amount=100¤cy=usd&invoice=true"><kbd>Donate $100 now</kbd></a>
<a href="https://joelpurra.com/donate/"><kbd>More options</kbd></a>
</p>
</footer>
<!--#include virtual="/tracker/piwik.html"-->
</body>
<!-- jekyll-theme-demivolte, https://joelpurra.github.io/jekyll-theme-demivolte by Joel Purra, https://joelpurra.com/ -->
</html>