-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal.json
More file actions
5227 lines (5227 loc) · 280 KB
/
final.json
File metadata and controls
5227 lines (5227 loc) · 280 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
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
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"description": [
"tweets with binary classification by us of whether the tweet was politically influential or not (yes or no)"
],
"authors": {
"author1": "Saumya Dureja",
"author2": "Ruchit Gandhi",
"author3":" Purvak Lapsiya",
"author4": "Gursheen Grewal"
},
"emails": {
"email2": "ruchitng@usc.edu",
"email1": "sdureja@usc.edu",
"email3": "lapsiya@usc.edu",
"email4": "gursheeg@usc.edu"
},
"corpus": [
{
"data": "\u201cIn 230 years, there\u2019s never been a Native American woman in Congress. I have never seen myself in that body of our government.\u201d With her election, @Deb4CongressNM has made it possible for tribal women to see themselves in congressional leadership. https://t.co/0jzIvO2Kst",
"label": "Yes"
},
{
"data": "What an absolutely tremendous election\ud83d\ude01\nStill fighting it out all over the country!\n\nRecounts likely in a handful of Washington state legislative races https://t.co/ALtUQFpS1B via @seattletimes",
"label": "No"
},
{
"data": "@mattmmille @peggy_kandies @kate_hess @GOP @BrianKempGA @POTUS What is this imaginary \"Democrat Plantation\" that white Republican racists are always blabbering about anyway? Remember, it's Brian Kemp who was the literal \"Overseer\" of the Georgia election. Crack that whip, massa Brian!",
"label": "Yes"
},
{
"data": "I, I die , Horatio \nThe potent poison quite o\u2019ercrows my spirit.\nI cannot live to hear the news from England.\nBut I do prophesy the election lights \nOn Fortinbras. He was my dying voice",
"label": "No"
},
{
"data": "@supertaschablue @TenaciousEye Think it more absurd to claim that only one person is qualified to be speaker. The question of who should lead should be discussed/debated following every election.",
"label": "No"
},
{
"data": "FRAUD EXPERT: Democrat Efforts to Add Votes AFTER Election Day Potentially Grounds for RICO Investigation https://t.co/DteTaGiO7u via @gatewaypundit",
"label": "No"
},
{
"data": "Agree w/ #AMJoy panelists: Just b/c @staceyabrams & @AndrewGillum did not win the election, they STILL DID NOT LOOSE. GA & FL R a lot bluer than B4, positively effected down-ballot races & kept key issues front & center! Kudos 2 both 4 their courage 2 run & fight! @MSNBC",
"label": "No"
},
{
"data": "@LalonniePufnock @Priyank46616328 @fan_phl @GabeHoff I\u2019ve been thinking the same thing because I don\u2019t think the left ever had a thought that Trump would win, it wasn\u2019t even a possibility for them, but now they are scared and they are getting careless as we just seen in this last election.",
"label": "Yes"
},
{
"data": "@PJMedia_com To Fix Elections, Hold Real Elections. https://t.co/8aUR3T7T5A",
"label": "Yes"
},
{
"data": "Democrats prove again they support the enemies of our Country\nHow can this be resolved? \n\nhttps://t.co/HMEVNv77Mu",
"label": "Yes"
},
{
"data": "@realDonaldTrump Ahahahahaha. Face it, comrade. You didn\u2019t just lose the House, YOU LOST THE HOUSE IN THE BIGGEST TURNAROUND DEFEAT IN 40 YEARS. \n\nEntirely your fault.\n\nDespite your sending 5000 soldiers to the front as an election stunt. People saw thru it. You failed. BIGLY! https://t.co/CxQytOkKvB",
"label": "Yes"
},
{
"data": "The boy Kemp stole the election from ole girl I know he did. I could see him and his cronies smoking and drinking and him saying that ni@#$ bi!@$ over my dead body. He cheated it's proof. They asking him for the longest to step down off election board. This been a planned good",
"label": "Yes"
},
{
"data": "The election is free and fair.We are leading in all the three Local Governments. We are just waiting to celebrate tomorrow.",
"label": "No"
},
{
"data": "I'm telling you if they elect in Hillary in 2020 there will be a civil war. or is that too something I'm late to the party about? is this by design> to put in Trump who will cause division so she can swoop in at the next election? w michelle as vp?",
"label": "Yes"
},
{
"data": "2019 election: Presidency reacts to alleged viral audio of\u00a0Saraki https://t.co/VgGhyRn7RK https://t.co/hv5UAl3MUn",
"label": "No"
},
{
"data": "Now is the time to shut the government down. Elections over. Americans have short attention span. Next election two years away, voters will forget. Will not forget a victory on wall funding when Dems capitulate and fork over the money. https://t.co/5Jw1KMShpq",
"label": "Yes"
},
{
"data": "The leader of the Center Party will be the next person to try to break Sweden's political deadlock, which has left it with no new government, two months after the election. Center leader Annie L\u00f6\u00f6f only represents 8 per cent of the votes in September's election https://t.co/0JLh82TXjg",
"label": "Yes"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle https://t.co/kB2NSZnKZn via @politico",
"label": "No"
},
{
"data": "@dovnorman18 @realDonaldTrump I've seen coverage of this since day one (including after the election) it may not matter to you so, if that's the case unlock your doors and welcome them with open arms.",
"label": "No"
},
{
"data": "@Indy4MAGA @thehill @BrianKempGA @GovernorDeal Martin Luther King's cousin Christine Jordan voted in every election for over 50 years. This year RACIST @GARepublican @BrianKempGA Stopped her. Voting is a right, not a privilege. It is ours, Brian Kemp Stole it from her, which means he is a racist thief. https://t.co/YWdz049P3P",
"label": "Yes"
},
{
"data": "@Konnie_Huq @peoplesvote_uk You have a People's Vote. Whatever the outcome of it, you still have the same people in charge who are fucking up now. THERE IS NO SANE ARGUMENT AGAINST A GENERAL ELECTION AND FOR A PEOPLE'S VOTE. Pandora's Box has been opened, you can't just shut it and hope it will go away.",
"label": "Yes"
},
{
"data": "How about this for Election Reform???\nInstead of having all these very expensive elections, we can just give the names of all the candidates, to judges and let them decide, who the winner is. They are going to do that, anyway, after all the lawsuits are settled. https://t.co/ew44YWZ4u2",
"label": "Yes"
},
{
"data": "After watching the Georgia election, I'm thinking perhaps we should have let the South secede.",
"label": "No"
},
{
"data": "@SoCal4Trump @HillaryClinton @staceyabrams Do some research, fool. \n\u2022 1.5 million voters purged by Brian Kemp\n\u2022 53k registrations on hold\n\u2022 4.5 hour lines to vote\n\u2022 214 polling places closed\n\u2022 Dems falsely accused of cyber crimes\n\u2022 AND Kemp oversaw his own election",
"label": "Yes"
},
{
"data": "I always said the GOP will die in my lifetime. As they say, \"As California goes, so goes the nation.\" Good times.\nhttps://t.co/GrYR0huXHQ",
"label": "Yes"
},
{
"data": "@smfehir What if jr calls an early election? Max caught flat footed?",
"label": "No"
},
{
"data": "\ud83d\udc47This. Just start referring to him as either Election Thief Kemp or Jim Crow Kemp. Personally, I prefer Jim Crow Kemp, because \"Jim Crow\" already has resonance with a significant portion of the voting population, and highlights the effects of his policies. https://t.co/RZ5PhM5sxF",
"label": "Yes"
},
{
"data": "There is such a thing as a recall petition to force an early election to remove him. The Dems tried it with Scott Walker. We could use constitutional law to get rid of this guy with a special election. https://t.co/3W4epSC42r",
"label": "Yes"
},
{
"data": "@bradley_steve @South_Belfast @CWave_Dave @skydavidblevins @petem2018 Don't worry, we've got SF demographers producing election leaflets that helpfully remind people that they're about to have the whip hand over them pradistants",
"label": "Yes"
},
{
"data": "@RepGraceMeng I voted for you in this past election. As my representative I'd like for you to support the #GreenNewDeal resolution along @Ocasio2018 @repjohnlewis @RoKhanna @JoeNeguse @RashidaTlaib @Deb4CongressNM @repblumenauer @RepMaloney @RepJoseSerrano #askyourrepresentative",
"label": "No"
},
{
"data": "Florida is fraud country! https://t.co/3ZeePPgHJo",
"label": "No"
},
{
"data": "@mitchellvii It\u2019s about time. Auditing the Maricopa County election is a warning shot for America and voter fraud, right, Dems? Can ya feel it?",
"label": "Yes"
},
{
"data": "This is an omen.\nA typical example of what is going to happen to APC in 2019 election. https://t.co/5K49fVfX4F",
"label": "No"
},
{
"data": "@pinevalleyAR @johnpavlovitz @BrianKempGA You will be surprised how quick you forget about Brian Kemp.\nEvery time a Democrat loses an election, they claim somebody cheated them. It is not really a big deal.",
"label": "Yes"
},
{
"data": "@PatriotsSoapbox @BWDeadcat @AwakeYoda TO BE THE MOB BOSS OF AN EMPIRE WITHOUT BORDERS OR MORALITY\nhttps://t.co/3h22zFrEiR\nArticle shared by @StormIsUponUs and it has the most informative background on how they get away with election fraud and all their crimes. #WWG1WGA",
"label": "Yes"
},
{
"data": "@SophyRidgeSky @RidgeOnSunday Live? Ask why she still pushing \ud83d\udca9 chequers plan no ONE voted for or wants? Delaying no deal time to act! Dulusional PM. Business hate her plan. No deal or election. The maths are stageringly simple, it won't pass @HouseofCommons ! https://t.co/rmYJTsr2mT",
"label": "Yes"
},
{
"data": "\ud83d\udcaaCongratulations to 1.8 million #Cannabis #Massachusetts voters who got Recreational #Marijuana Ballot passed Yeson4 \nBooo to the Pathetic Pot Blocker Politicians Who Remind us to Vote you Out next Election\n#Massachusetts #boston #roxbury #brookline #worcester #thc #cbd #mapoli https://t.co/iOhC2tXJq8",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle https://t.co/Mbd67fqc6u via @politico",
"label": "No"
},
{
"data": "@VictorConservat @KellyannePolls He's been like this since the election. I keep asking myself how she can be OK with it. \ud83e\udd37\u200d\u2640\ufe0f",
"label": "No"
},
{
"data": "WATCH: Garry Kasparov and Van Jones get into heated debate about Obama's response Russian election meddling https://t.co/Nf2MEcS2p6 via rawstory",
"label": "No"
},
{
"data": "@CNN @CNNOpinion Come on Hillary run again! We\u2019re waiting to see how bad you get beat when the election is not rigged in your favor!",
"label": "Yes"
},
{
"data": "@gr8tjude_08 yeah you can have one @staceyabrams how about next election cycle???",
"label": "No"
},
{
"data": "And Ayun nga, naging popularity contest election namin (something which often occurs in every election)",
"label": "No"
},
{
"data": "This race was a disgrace: \n\u2022 1.5 million voters purged by Brian Kemp\n\u2022 53k registrations on hold\n\u2022 4.5 hour lines to vote\n\u2022 214 polling places closed\n\u2022 Dems falsely accused of cyber crimes\n\u2022 AND Kemp oversaw his own election https://t.co/eehvhsnrdi",
"label": "Yes"
},
{
"data": "Stacey Abrams Ends Her Challenge To Georgia Election, But Files Lawsuit To Fight For Voters https://t.co/w5GylOeDVo",
"label": "No"
},
{
"data": "\"Your Nana-Nanis Collaborated With British\": Congress' Reply To PM's Jibe - NDTV this eccentric Modi is a shameless person. Now that the election r nearing this feku has gone mad n talking shit. It is high time this eccentric fellow is kicked out.",
"label": "Yes"
},
{
"data": "Georgia governor election: Democrat Stacey Abrams acknowledges defeat https://t.co/RdaZYBW6Ci",
"label": "No"
},
{
"data": "Trump peace plan on course despite Israeli election talk, official says https://t.co/KXf4pZ2PcW",
"label": "No"
},
{
"data": "Democratics have just achieved the broadest, most diverse election of women at ALL levels of government, across the US. Now #fivewhiteguys comin\u2019 for the Queen?\n\nSTUPID JACKASSES!\n\nThis is a Tea Bagger Booby Trap! Step around it!\n\nNancy Pelosi: FIRST WOMAN SPEAKER of the HOUSE! https://t.co/NMOA622L2y",
"label": "Yes"
},
{
"data": "I hope this isn't just an attempt to cover up with a sham investigation: \u2018Active Criminal Investigation\u2019 Now Looking Into Election Fraud In Florida https://t.co/2qp5B6UeFx via @weaselzippers",
"label": "Yes"
},
{
"data": "@benshapiro You know your intellectual giant of a president will scream election fraud when he goes down in 2020.",
"label": "Yes"
},
{
"data": "@A50Challenge I\u2019d like loathsome and the rest of them all to resign. Then call an election and dump this entire stupid farce.",
"label": "No"
},
{
"data": "@gerfingerpoken #Trump administration seems to have no appetite for real election procedural reform. This is needed.",
"label": "Yes"
},
{
"data": "This MP election looks similar to as @RahulGandhi vs @narendramodi\n\n@JM_Scindia vs @ChouhanShivraj\n\nWe all knows right side going to win\n\n@TajinderBagga",
"label": "No"
},
{
"data": "How incompetent can Brenda Snipes be??\n https://t.co/IvWFD5WyyI",
"label": "No"
},
{
"data": "@ThePresObama @realDonaldTrump @TomReedCongress He is just not good at it.\n\nHe spends the last election making it about her, calling her names and attacking her. Now he thinks he can sink her by attaching himself to her, or at least appear to be kissing her butt. \n\nThe guy is just not very smart.",
"label": "Yes"
},
{
"data": "@Vltdrg @56Bohemian @DaltonFan4 @helmholtzdecom @JustinTrudeau Was rooting for Beto. The machines were fixed to flip for Cruz in some counties, I think. My friend was there through the whole election day and she said it felt wrong. Beto is a star and the world will see more of him. And no we aren't taking the clown. Sorry, you guys did that.",
"label": "No"
},
{
"data": "*The dems have been heavily invested in election fraud for DECADES!* https://t.co/6WBVUZtTE4",
"label": "Yes"
},
{
"data": "@HillaryClinton @staceyabrams Every vote was counted and she lost. Boy, you two have a lot in common - ya know not accepting election results. \ud83e\udd23",
"label": "No"
},
{
"data": "@Jacob_Rees_Mogg No, a general election is better than a bad deal or no deal.",
"label": "No"
},
{
"data": "@realDonaldTrump You stated that Florida\u2019s election was rampant w/fraud, so we shouldn\u2019t trust the results just because your guy won. It\u2019s not a heads I win, tails you lose narrative. There wasn\u2019t fraud but there was significant evidence of suppression of voters who don\u2019t support your guys. /1",
"label": "Yes"
},
{
"data": "And she has preserved her standing to take that hideously corrupt Georgia election to court, if she, ACLU and other organizations interested in actual democracy decide to pursue it. https://t.co/bH4z593TvA",
"label": "Yes"
},
{
"data": "@sinam_anger @fx16news Where are the other source of income? \nHow will he fulfill his election draft and manifesto?",
"label": "No"
},
{
"data": "@ReasonBrigade @stormypatriot21 @intheMatrixxx @realDonaldTrump does not work according to your schedule.\n\nWe know about the courts clean up.\nWe know about the Election Sting. \nWe know about the False Flags.\n\nWhat delay? Everything is on schedule.\n\nYour words match the shills.",
"label": "No"
},
{
"data": "@Anirudh_Astro Sir many days pls predict 2019 election",
"label": "No"
},
{
"data": "Florida official Brenda Snipes: racism 'probably' a factor in attacks against me https://t.co/4MHMJcgiZc",
"label": "Yes"
},
{
"data": "@tbmb6 @GolfDigest That\u2019s the polls right before the 2016 presidential election.....",
"label": "No"
},
{
"data": "@mustangmadd @Joanbeam3000 Among her other talents, Frum is now a mind reader. I wonder if she knows what I'm intending to do next election? \ud83e\udd14",
"label": "No"
},
{
"data": "Florida official Brenda Snipes: racism 'probably' a factor in attacks against me https://t.co/GDNkLXSzvf",
"label": "Yes"
},
{
"data": "@crissles She did not win the election but she won the hearts of many Americans and has inspired us to action. \ud83d\ude4f\ud83c\udffe@staceyabrams",
"label": "Yes"
},
{
"data": "Nobody stood up!. They we're saying( national anthem ndi zoo) lol this is serious. The way things are going I don't think south East will participate in this coming election. @nlitvin @EmekaGift @MaziNnamdiKanu @MrStanleyNwabia",
"label": "No"
},
{
"data": "@SassyKadiK Can't wait until the next election. https://t.co/Es2cYtQZPe",
"label": "No"
},
{
"data": "@CREWcrew @IsobelCarr To say nothing of Bondi's involvement in the current election clusterfuck in Florida's senator and governor elections.",
"label": "No"
},
{
"data": "Harris says election likely unless Fianna F\u00e1il extend Confidence and Supply deal https://t.co/9C0b111JXv",
"label": "No"
},
{
"data": "Facebook executive denies blocking investigations into election meddling\u00a0Video https://t.co/Ny1yUlhun9 https://t.co/hQuy9vBAlB",
"label": "No"
},
{
"data": "@vikramchandra Heads of states of SAARC nations had attended swearing in ceremony of NaMo in 2014. Call it coincidence in the next election many of them were ousted fm power. Now NaMo attended swearing in ceremony of Maldives President. General election in India is nearing.",
"label": "Yes"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO. This is a peek into the future of the USA. Those on the left are less responsible than the right and are out-populating conservatives. Gov\u2019t pays for their kids. https://t.co/PSEndobNuz",
"label": "Yes"
},
{
"data": "@jhlivingstone @FLOTUS @POTUS @WhiteHouse Sounds like white male privilege to me. You people on the left never cease to amaze me with your hypocrisy... you lost an election, to her husband mind you, get over it.",
"label": "Yes"
},
{
"data": "@davidaxelrod @RDudrak @realDonaldTrump @LouDobbs is spreading propaganda about; the millions of illegal immigrants that voted had a defined impact on the election. Trump has brought us to lawlessness and disregard for truth. He is a minister of trump fake media.",
"label": "Yes"
},
{
"data": "Nothing progressive about @NancyPelosi - she led the sellout and gutting of @TheDemocrats for generations. She's a stooge of wealth and income inequality in America and will give @GOP ammunition through the next election. Live by #ClintonTwits Pelosi, die by @#ClintonTwits https://t.co/E6iJ9oSH7U",
"label": "Yes"
},
{
"data": "@Claudia_Smith_x @MichaelAvenatti @realDonaldTrump Also sweetheart...Putin would have been involved election tampering right? That's not the obstruction case. That \"case\" is in regards to Trump firing Comey. Get the facts straight.",
"label": "Yes"
},
{
"data": "The Chart That Shows Some of the Biggest Midterm Surprises https://t.co/pJdVIVbuUM",
"label": "No"
},
{
"data": "@KyrieElissa Ugh, yeah, it's that solid grading block that is so difficult right at the end, when you're tired. With this big class, it's been pretty much non-stop grading since midterm. But the last 2 weeks bring their final writing projects and the final exam, so it'll get pretty intense!",
"label": "No"
},
{
"data": "@realDonaldTrump @TomReedCongress You're hilarious!! Didn't your midterm rallies turn out to be a waste of taxpayers money. Geez, You're so full of yourself. You just don't see reality do you?? Sad...",
"label": "Yes"
},
{
"data": "Voter suppression is an all-American problem we can fight \u2013 and win\n\nIt has been part of US history since its foundation. But the midterms have proven that vital progress against it can be achieved\n\nhttps://t.co/y5ymzNH7M0",
"label": "No"
},
{
"data": "Surprised @TheEconomist called so many close midterm races before they were official in their 11/10 issue. Funny to read incorrect AZ Senate race results in print...",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle https://t.co/kB2NSZnKZn via @politico",
"label": "No"
},
{
"data": "I always said the GOP will die in my lifetime. As they say, \"As California goes, so goes the nation.\" Good times.\nhttps://t.co/GrYR0huXHQ",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle https://t.co/Mbd67fqc6u via @politico",
"label": "No"
},
{
"data": "This makes no mention of the fact that his PR group\u2019s associated PAC, @AmericaRising, was behind one of the most despicable tactics in the midterm cycle: spreading ill-begotten confidential and personal data, including the SSN, of @SpanbergerVA07. Goes well beyond Facebook. https://t.co/boMiFLXAz4",
"label": "Yes"
},
{
"data": "Midterm elections proved beyond a shadow of a doubt that most white women are very happy with white supremacy. You can get mad, clutch your pearls, unfollow, call me divisive, but the numbers speak for themselves.\n\nDon\u2019t check me, check your mamas, sisters, girlfriends, etc... https://t.co/6DhTOtOR8V",
"label": "No"
},
{
"data": "America's two economies remain far apart: The midterm elections reaffirmed America\u2019s stark economic divides, with nearly 61 percent of the nation\u2019s economic activity concentrated in the 228 congressional districts won by Democrats this year. https://t.co/v52t2sC2Ie",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO. This is a peek into the future of the USA. Those on the left are less responsible than the right and are out-populating conservatives. Gov\u2019t pays for their kids. https://t.co/PSEndobNuz",
"label": "Yes"
},
{
"data": "boo hoo lol\nhttps://t.co/59nOqRaPWX",
"label": "No"
},
{
"data": "The State that brought you #RonaldReagan & #RichardNixon is now close to 100% controlled by #Democrats . All that remains of the California #RepublicanParty is its funeral cortege.\nhttps://t.co/jp30LPkQC4",
"label": "Yes"
},
{
"data": "@Independent support poors in because kemp cheated \n\nhttps://t.co/tunZFhvy1S",
"label": "No"
},
{
"data": "@dbongino @grizzlemeister She is a joke! Proven to have broken the law in the past and replicated her actions during the 2018 midterm elections. The last refugee for liberals - claim racism!",
"label": "Yes"
},
{
"data": "\u201cI believe that the party has to die before it can be rebuilt.\u2026 Burn it to the ground.\u201d https://t.co/jaX4VVgTrF",
"label": "No"
},
{
"data": "Expert says Senate will be up for grabs in 2020 https://t.co/fpqxy13DnH",
"label": "No"
},
{
"data": "Pentagon: Troops can go home soon because Trump's border stunt is over https://t.co/4qoeIbrxHH",
"label": "No"
},
{
"data": "Pentagon: Troops can go home soon because Trump's border stunt is over https://t.co/QRmmtlVtZn",
"label": "No"
},
{
"data": "@lovebites826 @YokaiLUFC I'm not Canadian, you dont have to worry about offending me lol. He has a lot of idiots who follow him, but we just had our midterm elections and it should've demonstrated to the world there are far more Americans who dont blindly follow him than do.",
"label": "Yes"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO https://t.co/lsofptov9K",
"label": "No"
},
{
"data": "Midterm elections reveal effects of gerrymandered districts (from @AP) https://t.co/FynsG4cloq",
"label": "No"
},
{
"data": "@readsludge: Tens of Millions in Mystery Money to SuperPACs Funded Final Weeks of Midterm Ads https://t.co/immHGgxKdU @CommonCauseNC @ncethiclobby @indyweek @wunc https://t.co/1v7FGCbTFd",
"label": "No"
},
{
"data": "'Caravan' coverage on Fox News conveniently plummets after midterm elections https://t.co/KfEKDobEHM",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle https://t.co/7Uv4P53QnL via @politico",
"label": "No"
},
{
"data": "Let\u2019s hope they choose cremation- RIP, California GOP: Republicans lash out after midterm election and how \u2066@realDonaldTrump\u2069 killed the party. - POLITICO #GOP \u2066@GOP\u2069 https://t.co/5B3QOwz023",
"label": "No"
},
{
"data": "Dammit i meant Chem midterm",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO\n\n\u201cIn one fell swoop Trump & Republicans who willingly handcuffed themselves to him have turned Orange County into a GOP wasteland,\u2019\u2019 https://t.co/OCXvoSP8uu",
"label": "No"
},
{
"data": "@svenosaurus @NateSilver538 I wondered this too, but it was very strong turnout. https://t.co/hQMMtq8rFd",
"label": "No"
},
{
"data": "She's 81 and kicking. Hail Jane!\ud83e\udd29 https://t.co/zCQBWWpyIx",
"label": "No"
},
{
"data": "Read this book by Emory Professor Carol Anderson and understand what happened in this Georgia midterm election. https://t.co/9DyF3oAsk7",
"label": "No"
},
{
"data": "@BanicGregor @KennethDeVault2 @LeahR77 @narsa2556 @Recook63Russell @ChristieC733 @carrieksada @GrrrGraphics @michaelbeatty3 @grizzlemeister @KatTheHammer1 @DanCovfefe1 @CaliConsrvative @CarmineZozzora @ArizonaKayte @adjunctprofessr Midterm elections, normally the party in power loses seats, this time around, they lost seats in the house, but gained in the Senate. \nAnd the Senate are the ones who approve judges, cabinet members, ect... \nHouse can not pass any laws without senate, or a supermajority.",
"label": "No"
},
{
"data": "People are not being told that the Republican Party is on track to pick up two seats in the U.S. Senate, and epic victory: 53 to 47. The Fake News Media only wants to speak of the House, where the Midterm results were better than other sitting Presidents. #WeThePeople",
"label": "Yes"
},
{
"data": "Marco Rubio Provides Proof Democrats Planned Voter Fraud Day After Midterm Election - Think Americana https://t.co/Rn2znZj3t8",
"label": "Yes"
},
{
"data": "This is what happens when a state makes it easy to register and vote! ~ Colorado had nation's second-highest voter turnout rate in 2018 midterm election https://t.co/V14FS2J0Tb",
"label": "No"
},
{
"data": "@realDonaldTrump @TomReedCongress Still fresh from decisive GOP midterm victory. The caravan is coming for your healthcare. Must stop Mueller probe. Witch hunt. No collusion. That's why we had to pull out of NAFTA.",
"label": "Yes"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO https://t.co/H45QMZTaPU",
"label": "No"
},
{
"data": "Voters from coast to coast have chosen to bring common sense back to our criminal justice system. https://t.co/JFp1OYjq7r",
"label": "No"
},
{
"data": "RT @ForecasterEnten: From a statistical/electoral/historical perspective, Scott's defeat of Nelson is pretty much unmatched in recent political history. Beating a swing state opposition party senator without a hint of scandal in a midterm... It's quite impressive.",
"label": "Yes"
},
{
"data": "@deplorablebob7 @lorizellmill @lourdesmz @mitchellvii Bob, we all know midterm 2018 is a practice run on how to perfect the cheating for 2020",
"label": "Yes"
},
{
"data": "Midterm is finished.\nWow, so relaxing~\ud83d\ude19",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO https://t.co/zV0nopjI3L",
"label": "No"
},
{
"data": "Fake News. Conservatives moving out of CA because it oozes liberalism. Has 0 to do with Republican Party.\n\nRIP, California GOP: Republicans lash out after midterm election debacle - POLITICO https://t.co/Q3tgZXZRSm",
"label": "Yes"
},
{
"data": "all I can think about right now is my decision about taking my midterm without studying a word as I lay here in my comfy ass bed",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO https://t.co/nBGSITYdBP",
"label": "No"
},
{
"data": "#AMJoy Who made @NancyPelosi an issue In latest midterm election? @MSNBC made Pelosi an issue. Ever Democratic candidate who appeared on @MSNBC was asked over and over; Will you support Nancy Pelosi?\u201d @lawrence was only MSNBC anchor who didn\u2019t ask.",
"label": "No"
},
{
"data": "About to take my first midterm for my graduate program \ud83d\ude2c wish me luck \ud83e\udd1e\ud83c\udffe",
"label": "No"
},
{
"data": "DARK TO LIGHT: Exposing the 2018 Midterm Elections https://t.co/mttgG9JyCF via @YouTube",
"label": "No"
},
{
"data": "Who loves bipartisanship more than banks? \u201cA divided Congress, declared JP Morgan\u2019s Marko Kolanvoic, speaking for the investor class as a whole, \u2018is the best outcome for US and global equity markets.\u2019\u201d https://t.co/3iNFfKwTmR",
"label": "No"
},
{
"data": "Midterm elections reveal effects of gerrymandered districts https://t.co/Ual2n139oY",
"label": "No"
},
{
"data": "@pius_adesanmi I did, sir, south of your border. Was in DC, Maryland, Florida, Colorado and NYC for the #IVLP to study the process of the midterm elections. Necessary time off o. I'm now back to Governor Ganduje and bogus awards. Glad you're back. Sent you Whatsapp IMs while you were offline.",
"label": "No"
},
{
"data": "A breakdown of the federal and state healthcare agenda post midterm elections: https://t.co/HwvgXFdMH9 #healthpolicy #midtermelections",
"label": "No"
},
{
"data": "@Lkan77 @SWAGDAD80 @KellyannePolls LOL... Hillary got 3 MILLION MORE VOTES IN 2016. Because of the #TrumpTraitor, 12 million more voted DEMOCRAT in this 2018 midterm election. \n\nDonald Trump is a LAUGHING STOCK and HATED around the world. \nhttps://t.co/azMse4o9Qe",
"label": "Yes"
},
{
"data": "Recent midterm ballot initiatives in NV, WA, and CO show confidence towards advances in renewable energy. \ud83c\udfdb\ufe0f\ud83c\udfde\ufe0f Professor @BarryRabe calls the measures \"an amazing compilation of policy.\" \u2b07\ufe0f https://t.co/KSTfEjCp5l",
"label": "No"
},
{
"data": "wow i got a 100 on midterm maybe i snapped https://t.co/05aDf1gtvw",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO. \u2066@TomiLahren\u2069 buy buy\ud83d\udc4b\ud83c\udfff\ud83d\udc4b\ud83c\udfff\ud83d\udc4b\ud83c\udfff\ud83d\udc4b\ud83c\udfff https://t.co/Y1aFM6EgZD",
"label": "No"
},
{
"data": "Sending meaningless thoughts and empty prayers. RT @scottwongDC: Going, going ... with midterm wipeout, California Republican Party drifts closer to irrelevance - Los Angeles Times https://t.co/CMNVNsYimk",
"label": "No"
},
{
"data": "@MSNBC @JoeNBC It's a historical norm for the party of sitting presidents. The House seats the past Pres lost at first midterm.\n\n2010 Obama: -63\n1994 Clinton: -52\n1958: Eisenhower: -48\n1974 Ford (Nixon): -48\n1966 Johnson: -47\n1946 Truman: -45\n2006 Bush: -30\n1950 Truman: -29\n1982 Reagan: -26",
"label": "No"
},
{
"data": "The myth of Donald Trump, CEO president @CNN https://t.co/5pZBsPWp2L",
"label": "No"
},
{
"data": "@SenSchumer Hey Chuck how many seats were lost in the last two midterm elections when Obama was President? SHORT MEMORY?",
"label": "No"
},
{
"data": "Bill Maher nails Trump: \u201cIf you\u2019re keeping score: no wall; no health care plan that was \u2018better, cheaper, covered everybody\u2019; the trade deficit, bigger; the tax cut did not pay for itself; the debt is of course exploding; North Korea is building... https://t.co/QizCoU3Kr2",
"label": "Yes"
},
{
"data": "How Trump\u2019s favored midterm candidates performed https://t.co/4LlMsaJZjG https://t.co/LCCvD3cbT7",
"label": "No"
},
{
"data": "i have two finals a quiz and a midterm this week i hope i survive",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO https://t.co/lu64xA2VL6",
"label": "No"
},
{
"data": "Me: has a chemistry midterm in 45 minutes \nAlso me: watching political discourse videos for the past two hours",
"label": "No"
},
{
"data": "TIME to roll up the sleeves with a heart of #integrity and #sanity in every 50 states: #RIP, #California GOP: #Republicans lash out after midterm election debacle https://t.co/r8KVRAglYV via @politico",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO. Blue tsunami... https://t.co/VzwJQrvJIM",
"label": "No"
},
{
"data": "How Trump\u2019s favored midterm candidates performed https://t.co/n8DfgvcdEl via @voxdotcom",
"label": "No"
},
{
"data": "@LovesTrump4ever @CynBlogger @J_D_2018 @rob_willeford @realDonaldTrump Trump thrives on fear & terror. He stirs panic & hysteria - especially to get Repub votes before midterm. Trump warned, \u201cmarauding invaders, terrorists, thugs ... who the Dems recruited!\u201d All Lies. All BS. After election? NOT ANOTHER PEEP! He manipulates with fabricated terror! https://t.co/1RCcwSuuaE",
"label": "Yes"
},
{
"data": "@jcatboston @FHughesAuthor @JoeConchaTV Their midterm coverage was number 1 in demo. The recent survey of Americans showed that Anderson is the most recognised news host, most trusted and most liked cable host. Look it up. Morning consult.",
"label": "No"
},
{
"data": "Democrat voters fraud is rampant this midterm!!\ud83d\udc47 @POTUS @realDonaldTrump @GOP @GOPChairwoman @DonaldJTrumpJr @kimguilfoyle @MattWhitaker46 https://t.co/ZP99rA32ka",
"label": "No"
},
{
"data": "RIP, #California @GOP: Republicans lash out after midterm election debacle - POLITICO\n#ExcellentRead no more #WhitesOnlyClub \n#DiplomaDivide #FtheWall \n#BlueWave in #OrangeCounty \nSO PROUD OF MY STATE!!\n\u2066@katieporteroc\u2069 \ud83c\uddfa\ud83c\uddf8\ud83d\ude42\ud83c\uddfa\ud83c\uddf8\ud83d\ude42\ud83c\uddfa\ud83c\uddf8 https://t.co/ilstx1PJUU",
"label": "No"
},
{
"data": "Midterm Elections Generate Further Polarization in the United States https://t.co/8SVyyyEtMf via @grtvnews",
"label": "No"
},
{
"data": "RIP, California GOP: Republicans lash out after midterm election debacle https://t.co/16pipWUOpH",
"label": "No"
},
{
"data": "Check out our executive director's opinion on midterm elections, and what they meant for libraries throughout the country #votelibraries https://t.co/LdzyXDrD25 https://t.co/bnWIZxP3L8",
"label": "No"
},
{
"data": "@christinibnini ... and maybe that's what rubs me the wrong way. No one person is a savior, and there are a lot of equally interesting people who won their midterm race or have been in the business a while who deserve a chance (@amyklobuchar, @SenKamalaHarris, etc.)",
"label": "No"
},
{
"data": "Learn about the voting rights lawsuits happening across the U.S. that we kept an eye on during the midterm elections. #ProtectTheVote https://t.co/WNOtrQXww6",
"label": "No"
},
{
"data": "West Virginia Secretary of State Reports Successful #BlockchainVoting in 2018 Midterm Elections.\n\nThe Secretary of State of the U.S. state of West Virginia Mac Warner reported a successful first instance of remote blockchain voting.\n\n#blockchaintechnology\nhttps://t.co/22HGTbUyxO",
"label": "Yes"
},
{
"data": "Marquette Law School poll director: Wisconsin's urban counties growing more Democratic, while some rural counties increase their Republican leaning. https://t.co/vS47HIzYF8",
"label": "No"
},
{
"data": "After a midterm election plagued in many areas by technological and logistical glitches voting rights advocates fear a failure to learn from past mistakes could already be endangering the integrity of the 2020 elections.\nhttps://t.co/Eigv9LLKxm",
"label": "No"
},
{
"data": "For many UTD students, this year\u2019s midterm elections felt different.\n\nhttps://t.co/DACN8YSmsx",
"label": "No"
},
{
"data": "California GOP wipeout: \u201cI believe that the party has to die before it can be rebuilt.\u201d https://t.co/deRJs1D9wb. MN GOP bit like this. American system requires two parties. One is now utterly rotten. I hope GOP-next will come from the west.",
"label": "No"
},
{
"data": "@__Olabode @thefirstoge @IsimaOdeh The owner could issued a cease and desist order. Pharrell did when his song was used during Trump's US midterm elections campaign",
"label": "No"
},
{
"data": "Trump says \u201cThe midterms went very well.\u201d RIP, California GOP: Republicans lash out after midterm election debacle - POLITICO https://t.co/qWgL24EWg3",
"label": "No"
},
{
"data": "The \u201claughingstock of the world\u201d: that\u2019s what a federal judge called Florida and its vote count: John Nichols @NicholsUprising on the Trump Watch podcast https://t.co/t5yZgiOfwz https://t.co/dV93ob3avR",
"label": "No"
},
{
"data": "Midterm elections reveal effects of gerrymandered districts https://t.co/rBAh3ugBlF",
"label": "No"
},
{
"data": "Biiiiiitch, I got 118/120 on my midterm. \ud83e\udd73",
"label": "No"
},
{
"data": "Midterm elections reveal effects of gerrymandered districts (from @AP) https://t.co/vSE7TpJySN",
"label": "No"
},
{
"data": "@O__Canada @robreiner uh, that's a trickle not a wave, president's party always loses house seats after a midterm election. Also the dems lost at least 2 seats in the senate. Obama lost 63 in the house after his first midterm.",
"label": "No"
},
{
"data": "@morgfair There is a bigger meltdown to come? I think missing Veterans and whining since midterm losses was big tantrum.",
"label": "No"
},
{
"data": "@SenJoniErnst you misrepresent the blue wave by calling it a trickle. Losing 38 house seats, 6 governors, a number of local house seats all in Republican areas isnt a good thing. 3 million more people voted for a democrat in the presidential, 6 million midterm. Good luck",
"label": "Yes"
},
{
"data": "Opinion | The Chart That Shows Some of the Biggest Midterm Surprises https://t.co/73BgGyBTdU",
"label": "No"
},
{
"data": "@jimmy_dore @YouTube @fairvote @RCVfilm I'd rather vote for something I want and not get it than vote for something I don't want, and get it.https://t.co/amkE3JkOwz",
"label": "No"
},
{
"data": "@fardog @DanielLMcAdams There will be no change to US policies towards the rest of the world. Right now,after the midterm elections, we have Trump in the WH, McConnel at Senate, Pelosi at the house and Kavanaugh at the supreme court. Does not give you much hope for a change in anything, does it?",
"label": "Yes"
},
{
"data": "A MAGA outlet just published a piece blaming Trump for the GOP midterm loss https://t.co/B9UG32I08D via @voxdotcom",
"label": "No"
},
{
"data": "Midterm Madness Theatre - In Pursuit of Truth Presents - 11.16.18 [VIDEO] - https://t.co/6s0Iihs8sj https://t.co/4XV73mPjsM",
"label": "No"
},
{
"data": "@GeorgeTakei @NancyPelosi Yeah, but...\nhttps://t.co/7SqLiOapw7\nhttps://t.co/5jvXs2yzYA\nhttps://t.co/yMCPD6zWG0",
"label": "No"
},
{
"data": "@LeaLindsay16 @McAllisterDen A Republican Party that does not adapt from fighting silly uninformed Democrats to fighting college indoctrinated, raging, hateful anti-American socialists would lose. Real Americans will adapt to meet our foes and squash them like we have, EVERY SINGLE TIME. Dems will fail.",
"label": "Yes"
},
{
"data": "Time to find a republican to primary against him.. #DitchMitch https://t.co/PEIsJuUtaA",
"label": "No"
},
{
"data": "@Tammiking17 @MaerRoshan @RepMattGaetz @SaraCarterDC That\u2019s an old map honey, let\u2019s take Arizona for example, it might be purple at best. But again, you suffer from the \u201cus/them\u201d paradigm that is suffering the results of natural selection.\n\nSoon to the the last republican! https://t.co/TFYwexoJRQ",
"label": "No"
},
{
"data": "@GeorgeTakei @NancyPelosi Ya ok George more clueless everyday ,the ACA left 30 million American's without health insurance and it's called Romney care, another 1 % er out of touch with the common man, Her record is over a thousand lost seats , she is a Republican in sheep's clothing . https://t.co/si9TkQNJAs",
"label": "Yes"
},
{
"data": "Jacob Wohl, The Teenage-Hedge Fund Manager, Has Been Ordered To Cease And Desist https://t.co/WN0ZNMSzSF. A crook, a fraud, and a Republican. Quelle suprise.",
"label": "Yes"
},
{
"data": "@sechapman Mosby's best work was done as a Republican under the Grant administration. :)",
"label": "Yes"
},
{
"data": "Democrat beats Republican by 1 vote in Kentucky state House race https://t.co/xCpYo5noNl",
"label": "No"
},
{
"data": "ILLEGITIMATE CORRUPT TRUMP/ PENCE& REPUBLICAN GOP (TREASONOUS 30,000 HILARYS EMAILS FROM RUSSIA) (TERRORIST- THREATENED USA DAILY)\n( CHILD ABDUCTER -IN KENNELS WITH MYLAR BLANKETS HOSTAGE) HOLDER OF FAMILIES MURDERER(PUERTO RICO)(LOVER OF NRA- MURDERER OF PEOPLE) SEXUAL PREDATOR https://t.co/8ql8TLx27f",
"label": "Yes"
},
{
"data": "@MRyan1154 @senatemajldr As many as it takes to regain control of the republican party. This administration is not conservative or republican. They are sinking the @GOP \n\nWe welcome you, and pray you are able to take your party back someday.",
"label": "No"
},
{
"data": "@FBuckley17 @EamonDelaney10 @SaturdayRTE @fiannafailparty Fianna F\u00e1il should have followed Pat Carey's advice and taken the position of Labour, a left of centre party for the common person rather than for business. It should have emphasized the republican principle of equality and also organized in the north.",
"label": "No"
},
{
"data": "@mattmmille @peggy_kandies @kate_hess @GOP @BrianKempGA @POTUS What is this imaginary \"Democrat Plantation\" that white Republican racists are always blabbering about anyway? Remember, it's Brian Kemp who was the literal \"Overseer\" of the Georgia election. Crack that whip, massa Brian!",
"label": "Yes"
},
{
"data": "@jhsparacino70 @mitchellvii @KarlHof72462342 There\u2019s a restaurant in Oxford, Ms. called Old Venice... they have a pasta dish called CREOLE DELIGHT that is to die for!! @oldveniceoxford",
"label": "No"
},
{
"data": "@Stonekettle It is amazing how brilliant these millions of illegal immigrants are. They sneak across the border, vote without anyone knowing, never leaving any evidence behind, and never being discovered in spite of republican efforts to find them.\n\nWe need smart clever people like them!",
"label": "No"
},
{
"data": "Um, I don't think anyone trust your ability to get someone \"as many votes as she wants\" given that all your campaigning in the last month contributed to Republican losses, not votes. Jeff Dunham and Martha McSally in particular.... \ud83c\udf0a https://t.co/pnn5zfkN9O",
"label": "No"
},
{
"data": "@JeffFlake Genius. What was your first clue? This is the intelligence level of the Republican Party.",
"label": "No"
},
{
"data": "@neeratanden Rice is a really a closet republican -- she's in a district on Long Island, NY so she has to appeal to republicans who don't want to be associated with Trump but who still believe in all those economic myths",
"label": "No"
},
{
"data": "Has this female met their white Republican wives??? Has she asked one?? I wanna watch the debate.\n\nThis female was at Abrams political side #georgia https://t.co/DIsYfIWCLc",
"label": "No"
},
{
"data": "@Tott1955 I can easily predict that every Republican in CA that easily won on November 6, will lose to a Democrat since, apparently, their \u201cfound\u201d votes & voting don\u2019t stop until they win outside the margin of a recount. They keep saying Military like all their votes are for Dems...smh\ud83d\ude44",
"label": "No"
},
{
"data": "@1dannywalker1 @davidhogg111 Hello Bimbo Walker. \nVoting for a politician who's bought by big corporations is voting for the the latter's agenda, regardless of whether he/she is a democrat or republican, \n\nThat is why politicians have to be funded by the people, so they would only be beholden to the people.",
"label": "Yes"
},
{
"data": "@page88 He's the type who'll give ground on LGBTQ issues only if one of his children is LGBTQ. (ie a Republican).",
"label": "Yes"
},
{
"data": "@chadwhitfield5 @mayawiley @JayCeeQED @UPonMSNBC @davidgura @brhodes @TonyRomm @WajahatAli @PhilippeReines @alivitali @Mimirocah1 @MarcACaputo @NoahCRothman @ljoywilliams @UpPastryPlate @MSNBC I was>republican 4 40 yrs,self employed/employer @NoahCRothman is>rino & has no real conservative valuesie:Eisenhower Ive heard him lie,as>did this morning many x's,@HillaryClinton has done more 4>USA then all> GOPutin stooges put together.akaSociopaths & Orwellian gnomes Im done",
"label": "No"
},
{
"data": "President Trump saying Pelosi deserves to be speaker and offering republican votes to the cause has gotta be some of the most cunning political theater I've seen in a long time.",
"label": "Yes"
},
{
"data": "@LouDobbs - Let\u2019s see some evidence. \n\nMy guess? You\u2019re full of shit; but you\u2019ll already have the fright-wing misfits who watch you on @FoxNews spun up, and that\u2019s what you, @realDonaldTrump, and the rest of the Republican scumbags want. Keeps those pockets filled, eh? https://t.co/1bWTbahHNz",
"label": "Yes"
},
{
"data": "Always regretted volunteering for Dana Rohrabacher\u2019s campaign 30 years ago. It was extra credit for my HS civics class. Why\u2019d I do it? Republican office was nearby whereas the Dems were a few towns over. \ud83e\udd26\ud83c\udffb\u200d\u2640\ufe0fDana got in & stayed in for 15 terms!\ud83d\ude33 Hard lesson. Congrats, Harley!\ud83d\ude4c https://t.co/0JVsd6tg1K",
"label": "Yes"
},
{
"data": "@MrsRabbitResist I agree. The Republican party is in the toilet & i couldn't b happier!",
"label": "No"
},
{
"data": "I wish they were in prison #Fox #Cnn #Republican leaders #Trump #Media I hate these greedy killers filled with hate delusions and lies I hate them They are the dirtiest people in my life They have never stopped lying cheating and Killing people I hate them #UN #ap #aclu",
"label": "Yes"
},
{
"data": "@bskaggs21 @travelnevents @concernedwolf @MichaelSkolnik I guess this is all fine with you huh? https://t.co/lBabqdhtJ6",
"label": "No"
},
{
"data": "College educated Republicans have grown so fed up with the party they voted to give Nancy Pelosi the Speakers gavel rather than allow the Republican Party to continue on its current trajectory. Think about that for a moment. https://t.co/MwHge55JHD",
"label": "Yes"
},
{
"data": "Does Every Vote Count? Democrat Beats Republican by Single Vote in Kentucky House Race - Newsweek https://t.co/JwHJyFtqBS",
"label": "No"
},
{
"data": "@CommerceGov @SecretaryRoss @senorrinhatch @uspto @DarrellIssa Orrin Hatch is a do-nothing Republican backing trump!!! He should retire!!",
"label": "Yes"
},
{
"data": "Ok, why is @SethMoulton lying like a Republican?",
"label": "Yes"
},
{
"data": "@RadioFreeTom Are you also going to criticize those other two idiots, the girl and that Hogg kid? Or is the criticism only for Republican kids?",
"label": "No"
},
{
"data": "@MichaelRWear You could just as easily replace the word \"Democrat\" there with \"Republican\".",
"label": "No"
},
{
"data": "Best way for a liberal to get a viral tweet is to pretend to be a disgruntled republican. Well played skippy. https://t.co/asSfcgJaNO",
"label": "No"
},
{
"data": "A year after the Republican tax cuts, reality looks nothing like Republicans said it would https://t.co/nPIRAJMXXZ",
"label": "Yes"
},
{
"data": "@bmainzer They are using Fudge. She is even too progressive for them. It seems like Moulton is a plant, some sort of republican Manchurian Candidate.",
"label": "No"
},
{
"data": "Why do white supremacists keep identifying with the Republican Party? https://t.co/8ELU3TG08m",
"label": "Yes"
},
{
"data": "@hashtagRoberto @PhillipArroyo @latinorebels @RepRaulGrijalva @NatResources @RepJenniffer I don't see this as bipartisan issue. @TheDemocrats don't really believe in it, at least for now, and @RepJenniffer had a chance to push for it with all Republican Congress and WH and it never got out of committee",
"label": "Yes"
},
{
"data": "@PatGeeComix @Armyofbill @ADuralde @gretchenpeters Again. That\u2019s the problem. Why can\u2019t I be a republican that\u2019s more towards the center? Why is it that if I support the right to choose it makes me a Democrat or if a Democrat supports a strong border it makes them a Republican?",
"label": "No"
},
{
"data": "I think Its hate I feel ..I hate these white men #Fox #Cnn #Republican leaders #Trump #Media I ******* hate them They are nothing more then frauds terrorist and thieves and I hate these white men . #UN #ap #aclu",
"label": "Yes"
},
{
"data": "@wirelessruss @mousers @athompsonit @JR45540076 @realDonaldTrump @TomReedCongress You are wrong it's the Senate job to impeachment, its take two thirds which is 67 senators to impeach Republican holds at least 53 so it wont happen:) have a nice day lefty.",
"label": "Yes"
},
{
"data": "@robreiner @Janis64555857 It's not just 45. His whole posse is complicit. Let's focus on who is putting out the bills that are getting passed. We need to vote out every republican who has not tried to rein in the madness. Oh, that's all of them.",
"label": "Yes"
},
{
"data": "California Republican concedes defeat in race she said months ago wasn't even competitive https://t.co/s6cGoH9Awf",
"label": "No"
},
{
"data": "@PaladinCornelia @NancyPelosi @TeamPelosi I agree, although I'm all for Pelosi having to fight for the job, rather than it being a coronation. Still, rebellious Dems must remember that, w/o unity, the next Speaker could end up being a Republican. No rule says it must be a Democrat.",
"label": "No"
},
{
"data": "Dear white man of the Republican party this way of trump is bringing our country backwards not light werk forward ....light werk instead https://t.co/7akDO8JPo4",
"label": "Yes"
},
{
"data": "@JuliusGoat @DavidSorenson20 I\u2019m not a republican. Don\u2019t put that on me.",
"label": "No"
},
{
"data": "@jaketapper I\u2019m a Republican but will admit you\u2019re not wrong\ud83d\udc81\ud83c\udffb\u200d\u2642\ufe0f\ud83d\ude10",
"label": "No"
},
{
"data": "@MollyJongFast You didn\u2019t think that was the funniest joke you have ever heard? It should be on a poster or something. (I know. I\u2019m not a republican Or funny)",
"label": "No"
},
{
"data": "@BibChr If a Republican did that!!!!",
"label": "No"
},
{
"data": "@JoinTravisAllen California Republican bodies aren't even cold yet. Classy.",
"label": "No"
},
{
"data": "@Wolf_Man64 @realDonaldTrump @RepDeSantis @GOPChairwoman The establishment is neither democrat or republican the establishment is the establishment democrat republican like chocolate or vanilla establishment still in control",
"label": "No"
},
{
"data": "No shocker there. Weren't you a major donor to her campaigns back before you started pretending to be a Republican? https://t.co/bT5CcGk0bR",
"label": "No"
},
{
"data": "@1IronMan2018 @2HawkEye2018 How would a house Republican even have a chance to challenge @NancyPelosi ? This is just a ploy to instigate disfunction amoungst House Dems. Don\u2019t feed into it. Big battles ahead. Need one agenda, one voice. #BlueStayUnited",
"label": "No"
},
{
"data": "@realDonaldTrump You should call it the party of trump not the Republican party.",
"label": "Yes"
},
{
"data": "@TheRickWilson Calling the Bolsheviks Marxists is akin to calling Trump a Republican and a proponent of Democracy! \nTrocky was the only one who stood for Marx's principles and look what happened to him.\n\nThere was no Marx altar (physical or figurative) in Lenin's and Stalin's Russia!",
"label": "Yes"
},
{
"data": "@pushforward40 The republican Mia Love is winning.",
"label": "No"
},
{
"data": "@RepKathleenRice @RepMarciaFudge Your dividing when we need unity and you haven't even started the 2019 session yet. The country is tired of this. You are giving the Republican exactly what they want. Stop!!!",
"label": "No"
},
{
"data": "@EclatAscent @lonelytiefling Wow I\u2019m a Facebook transgirl. Nothing wrong with how I treat people unless I find out you voted republican. \ud83e\udd37\ud83c\udffb\u200d\u2640\ufe0f\u270c\ud83c\udffc",
"label": "No"
},
{
"data": "@CWiIIamsonMP @notchrisevans @deargodwhatnow @KevinMFeeney @historicus91 @aspirationalbob @WTarbiat New England being so horny for Republican governors that turn up at Pride parades (and not with God Hates Fags signs) is such a sin",
"label": "No"
},
{
"data": "Yes, there's a political realignment. Just look at the Republican wins in Ohio https://t.co/S9A82OzUiB\nRepublican Party has become the Party for the working, Middle Class. The Party of Workers, many with college degrees.",
"label": "Yes"
},
{
"data": "@realDonaldTrump @TomReedCongress \ud83e\udd23Every Republican in Congress will vote for that dingy empty head! She's our best player! Thanks dems for continually voting her in!\ud83d\udc4d\ud83d\udc4d\ud83e\udd23",
"label": "Yes"
},
{
"data": "@dynamo5k @realDonaldTrump Bullshit, he\u2019s an old school reublican, he\u2019s not a \u201cTrump Republican\u201d. THAT is what you and Trump don\u2019t like, he won\u2019t be bought. Because unlike all the people Trump puts in office, Mueller is well trained for his job and does it well.",
"label": "No"
},
{
"data": "Sitting in a bar in Argentina scrolling IG and realize there's a 110% chance @ZoeEmmerson future baby is republican",
"label": "No"
},
{
"data": "@ChuckGrassley @GrassleyPress @realDonaldTrump This is a program wanted by Democrats, please work on the Republican agenda with the time left like the wall, health care, taxes. Get with it @ChuckGrassley @POTUS",
"label": "Yes"
},
{
"data": "@GayRepublicSwag Every \"decent\" Republican in Arizona totally betrayed us by @JeffFlake & and his buddy in crime #McCain!! No one listens to Flake anymore. I'm truly hoping he will not return to Arizona either.... might not be a good idea!!\ud83d\ude1d",
"label": "Yes"
},
{
"data": "@starknightz @word_criminal @POTUS In Washington state the Republican running for Senate was actually in the lead. I told my wife this won't last long.",
"label": "No"
},
{
"data": "My turn: GOP is dead in California. A new way must rise | CALmatters\n\n\u201cRepublican principles used to be about helping other people.\u201d ?? That hasn\u2019t been true for over 100 years. https://t.co/k8O0jjgiYR",
"label": "Yes"