December 18, 2018

Trump Tweet Word Clouds

Mining Twitter Data

Is rather easy. You have to arrange a developer account with Twitter and set up an app. After that, Twitter gives you access to a consumer key and secret and an access token and access secret. My tool of choice for this is rtweet because it automagically processes tweet elements and makes them easy to slice and dice. I also played with twitteR but it was harder to work with for what I wanted. The first section involves setting up a token for `rtweet.

# Change the next four lines based on your own consumer_key, consume_secret, access_token, and access_secret. 
token <- create_token(
  app = "MyAppName",
  consumer_key <- "CK",
  consumer_secret <- "CS",
  access_token <- "AT",
  access_secret <- "AS")

Now I want to collect some tweets from a particular user’s timeline and look into them. For this example, I will use @realDonaldTrump.

Who does Trump tweet about?

A cool post on sentiment analysis can be found here. The first step is to grab his timeline. rtweet makes this quite easy. I will grab it and then save it in the code below so that I do not spam the API. I will get at the time series characteristics of his tweets and the sentiment stuff in a further analysis. For now, let me just show some wordclouds.

tml.djt <- get_timeline("realDonaldTrump", n = 3200)
save(tml.djt, file="../data/TMLS.RData")

I start by loading the tmls object that I created above. What does it look like?

library(wordcloud2)
library(tidyverse)
library(tidytext)
library(rtweet)
load(url("https://github.com/robertwwalker/academic-mymod/raw/master/data/TMLS.RData"))
names(tml.djt)
##  [1] "user_id"                 "status_id"              
##  [3] "created_at"              "screen_name"            
##  [5] "text"                    "source"                 
##  [7] "display_text_width"      "reply_to_status_id"     
##  [9] "reply_to_user_id"        "reply_to_screen_name"   
## [11] "is_quote"                "is_retweet"             
## [13] "favorite_count"          "retweet_count"          
## [15] "hashtags"                "symbols"                
## [17] "urls_url"                "urls_t.co"              
## [19] "urls_expanded_url"       "media_url"              
## [21] "media_t.co"              "media_expanded_url"     
## [23] "media_type"              "ext_media_url"          
## [25] "ext_media_t.co"          "ext_media_expanded_url" 
## [27] "ext_media_type"          "mentions_user_id"       
## [29] "mentions_screen_name"    "lang"                   
## [31] "quoted_status_id"        "quoted_text"            
## [33] "quoted_created_at"       "quoted_source"          
## [35] "quoted_favorite_count"   "quoted_retweet_count"   
## [37] "quoted_user_id"          "quoted_screen_name"     
## [39] "quoted_name"             "quoted_followers_count" 
## [41] "quoted_friends_count"    "quoted_statuses_count"  
## [43] "quoted_location"         "quoted_description"     
## [45] "quoted_verified"         "retweet_status_id"      
## [47] "retweet_text"            "retweet_created_at"     
## [49] "retweet_source"          "retweet_favorite_count" 
## [51] "retweet_retweet_count"   "retweet_user_id"        
## [53] "retweet_screen_name"     "retweet_name"           
## [55] "retweet_followers_count" "retweet_friends_count"  
## [57] "retweet_statuses_count"  "retweet_location"       
## [59] "retweet_description"     "retweet_verified"       
## [61] "place_url"               "place_name"             
## [63] "place_full_name"         "place_type"             
## [65] "country"                 "country_code"           
## [67] "geo_coords"              "coords_coords"          
## [69] "bbox_coords"             "status_url"             
## [71] "name"                    "location"               
## [73] "description"             "url"                    
## [75] "protected"               "followers_count"        
## [77] "friends_count"           "listed_count"           
## [79] "statuses_count"          "favourites_count"       
## [81] "account_created_at"      "verified"               
## [83] "profile_url"             "profile_expanded_url"   
## [85] "account_lang"            "profile_banner_url"     
## [87] "profile_background_url"  "profile_image_url"

I want to first get rid of retweets to render President Trump in his own voice.

DJTDF <- tml.djt %>% filter(is_retweet==FALSE)

With just his tweets, a few things can be easily accomplished. Who does he mention?

library(wordcloud)
## Loading required package: RColorBrewer
MNTDJT <- DJTDF %>% filter(!is.na(mentions_screen_name)) %>% select(mentions_screen_name)
Ments <- as.character(unlist(MNTDJT))
TMents <- data.frame(table(Ments))
pal <- brewer.pal(8,"Spectral")
wordcloud(TMents$Ments,TMents$Freq, colors=pal)

That’s interesting. But that is twitter accounts. That is far less interesting that his actual text. I want to look at words and bigrams for this segment.

What does Trump tweet about?

Some more stuff from stack overflow. There is quite a bit of code in here. I simply wrote a function that takes an input character string and cleans it up. Uncomment the various components and pipe them. The sequencing is important and I found this to get everything that I wanted.

library(RColorBrewer)
TDF <- DJTDF %>% select(text)
# TDF contains the text of tweets.
library(stringr)
tweet_cleaner <- function(text) {
  temp1 <- str_replace_all(text, "&amp", "") %>% 
    str_replace_all(., "https://t+", "") %>%
    str_replace_all(.,"@[a-z,A-Z]*","")
#    str_replace_all(., "[[:punct:]]", "")  
#    str_replace_all(., "[[:digit:]]", "") %>%
#    str_replace_all(., "[ \t]{2,}", "") %>%
#    str_replace_all(., "^\\s+|\\s+$", "")  %>%
#    str_replace_all(., " "," ") %>%
#    str_replace_all(., "http://t.co/[a-z,A-Z,0-9]*{8}","")
#    str_replace_all(.,"RT @[a-z,A-Z]*: ","") %>% 
#    str_replace_all(.,"#[a-z,A-Z]*","")
  return(temp1)
}
clean_tweets <- data.frame(text=sapply(1:dim(TDF)[[1]], function(x) {tweet_cleaner(TDF[x,"text"])}))
clean_tweets$text <- as.character(clean_tweets$text)
Trumps.Words <- clean_tweets %>% unnest_tokens(., word, text) %>% anti_join(stop_words, "word")
TTW <- table(Trumps.Words)
TTW <- TTW[order(TTW, decreasing = T)]
TTW <- data.frame(TTW)
names(TTW) <- c("word","freq")
wordcloud(TTW$word, TTW$freq)

Well, that is kinda cool. Now, I want to do a bit more with it using more complicated word combinations.

The Wonders of tidytext

The tidytext section on n-grams is great. I will start with a tweet identifier – something I should have deployed long ago – before parsing these; I will not need this now but it will be encessary when the sentiment stuff comes around.

library(tidyr)
CT <- clean_tweets %>% mutate(tweetno= row_number())
DJT2G <- clean_tweets %>% unnest_tokens(bigram, text, token = "ngrams", n=2)

bigrams_separated <- DJT2G %>%
  separate(bigram, c("word1", "word2"), sep = " ")

bigrams_filtered <- bigrams_separated %>%
  filter(!word1 %in% stop_words$word) %>%
  filter(!word2 %in% stop_words$word)

# new bigram counts:
bigram_counts <- bigrams_filtered %>% 
  count(word1, word2, sort = TRUE)

bigram_counts
##                   word1                   word2   n
## 1                  fake                    news 160
## 2                 witch                    hunt 128
## 3                 north                   korea  84
## 4                 white                   house  71
## 5                  news                   media  56
## 6                 total             endorsement  49
## 7                   law             enforcement  47
## 8               crooked                 hillary  43
## 9               supreme                   court  39
## 10               border                security  38
## 11            president                   trump  36
## 12                nancy                  pelosi  33
## 13               donald                   trump  32
## 14              hillary                 clinton  32
## 15                  tax                    cuts  32
## 16                james                   comey  31
## 17                prime                minister  31
## 18                trump                campaign  30
## 19                angry               democrats  28
## 20                trade                   deals  28
## 21               rigged                   witch  27
## 22                  2nd               amendment  25
## 23             military                    vets  25
## 24             southern                  border  25
## 25          immigration                    laws  24
## 26                 york                   times  24
## 27             american                  people  23
## 28                  kim                    jong  23
## 29              illegal             immigration  22
## 30                 jobs                    jobs  22
## 31            president                   obama  22
## 32             european                   union  21
## 33                  god                   bless  21
## 34                   13                   angry  20
## 35                obama          administration  20
## 36                south                carolina  20
## 37                 jeff                sessions  19
## 38            president                      xi  18
## 39                 west                virginia  18
## 40                brett               kavanaugh  17
## 41                   ms                      13  17
## 42                peter                  strzok  17
## 43           republican                   party  17
## 44               highly               respected  16
## 45                 lisa                    page  16
## 46              russian               collusion  16
## 47                stock                  market  16
## 48           washington                    post  16
## 49                chuck                 schumer  15
## 50              justice              department  15
## 51                trade                barriers  15
## 52                   00                     p.m  14
## 53                  bob                 mueller  14
## 54           mainstream                   media  14
## 55            president                  donald  14
## 56               strong             endorsement  14
## 57              billion                 dollars  13
## 58                crime                 borders  13
## 59             national                security  13
## 60              russian                   witch  13
## 61               border                  patrol  12
## 62              borders                   loves  12
## 63                bruce                     ohr  12
## 64             chairman                     kim  12
## 65            fantastic                     job  12
## 66                 rick                   scott  12
## 67                trade                 deficit  12
## 68                trump          administration  12
## 69                 2016                election  11
## 70           classified             information  11
## 71                 fair                   trade  11
## 72                judge                   brett  11
## 73                 mike                  pompeo  11
## 74              special                 counsel  11
## 75                   17                   angry  10
## 76             american                 workers  10
## 77              clinton                campaign  10
## 78             criminal                  aliens  10
## 79             election                     day  10
## 80                 fake                 dossier  10
## 81              illegal              immigrants  10
## 82            president                   putin  10
## 83                press              conference  10
## 84               puerto                    rico  10
## 85                  ron                desantis  10
## 86              russian                meddling  10
## 87                south                   korea  10
## 88                 vote              republican  10
## 89             american                 history   9
## 90                 anti                   trump   9
## 91                brian                    kemp   9
## 92             democrat                   party   9
## 93                  fbi                     doj   9
## 94            hurricane                florence   9
## 95         intelligence               committee   9
## 96               maxine                  waters   9
## 97             national                  anthem   9
## 98               robert                 mueller   9
## 99                saudi                  arabia   9
## 100              street                 journal   9
## 101                 tax                     cut   9
## 102                 u.s                  senate   9
## 103              unfair                   trade   9
## 104              united                 nations   9
## 105                wall                  street   9
## 106                  00                     a.m   8
## 107                 800                 billion   8
## 108           anonymous                 sources   8
## 109               billy                  graham   8
## 110              border                    wall   8
## 111             country               illegally   8
## 112               don’t                    care   8
## 113             federal              government   8
## 114               frame                  donald   8
## 115               henry                mcmaster   8
## 116                  ig                  report   8
## 117                john                 brennan   8
## 118                john                   james   8
## 119            judicial                   watch   8
## 120              middle                    east   8
## 121                news              conference   8
## 122               north                carolina   8
## 123              russia                    hoax   8
## 124              strong                 borders   8
## 125               trump                   tower   8
## 126             african                american   7
## 127               agent                   peter   7
## 128              andrew                 brunson   7
## 129              border                military   7
## 130               comey                  mccabe   7
## 131            complete             endorsement   7
## 132            consumer              confidence   7
## 133               cryin                   chuck   7
## 134         enforcement                officers   7
## 135                 fbi                   agent   7
## 136               gregg                 jarrett   7
## 137               happy                birthday   7
## 138               house            intelligence   7
## 139                iran                    deal   7
## 140                john                   kelly   7
## 141               local               officials   7
## 142                 lou                barletta   7
## 143               merit                   based   7
## 144             michael                   cohen   7
## 145            minister                     abe   7
## 146                news                     cnn   7
## 147                 oil                  prices   7
## 148              pastor                  andrew   7
## 149                paul                manafort   7
## 150                 red                    wave   7
## 151           sanctuary                  cities   7
## 152               trade                    deal   7
## 153                troy               balderson   7
## 154        unemployment                    rate   7
## 155          washington                     d.c   7
## 156               world                     cup   7
## 157                   9                      00   6
## 158                alan              dershowitz   6
## 159           amendment                   loves   6
## 160               angry                    dems   6
## 161            approval                 ratings   6
## 162                bill                  nelson   6
## 163              border                   crime   6
## 164              carter                    page   6
## 165         christopher                  steele   6
## 166             clinton              foundation   6
## 167             cutting                   taxes   6
## 168                 dan                 bongino   6
## 169               davos             switzerland   6
## 170             doesn’t                  matter   6
## 171              double                standard   6
## 172                gina                  haspel   6
## 173            governor                   henry   6
## 174              harley                davidson   6
## 175              highly              conflicted   6
## 176               jerry                   brown   6
## 177                john                     cox   6
## 178                lady                 melania   6
## 179              lowest                   level   6
## 180             massive                 tariffs   6
## 181                matt               rosendale   6
## 182            national                   guard   6
## 183              people               including   6
## 184               phony                   witch   6
## 185          republican                 primary   6
## 186              ronald                  reagan   6
## 187              secret                 service   6
## 188               total                   witch   6
## 189               trade                deficits   6
## 190                vice               president   6
## 191                vote                    vote   6
## 192                 151                 billion   5
## 193                   7                      00   5
## 194                   7                   00pme   5
## 195                 9th                 circuit   5
## 196             america                    safe   5
## 197            american                  worker   5
## 198              andrew                  mccabe   5
## 199            approval                  rating   5
## 200           beautiful                 evening   5
## 201             billion                  dollar   5
## 202             broward                  county   5
## 203                bush                  family   5
## 204            campaign                 finance   5
## 205               catch                 release   5
## 206               chain               migration   5
## 207                 cia                director   5
## 208          conflicted               democrats   5
## 209         congressman                   keith   5
## 210               court                 justice   5
## 211           dishonest                  people   5
## 212                 dnc                  server   5
## 213                 doj                     fbi   5
## 214                 don                  mcgahn   5
## 215               don’t                   worry   5
## 216             dossier                    paid   5
## 217                  el                salvador   5
## 218           elizabeth                  warren   5
## 219              entire                  nation   5
## 220                farm                    bill   5
## 221             farmers                 workers   5
## 222                fisa                   abuse   5
## 223              friend               president   5
## 224              fusion                     gps   5
## 225              george                     h.w   5
## 226            governor                   jerry   5
## 227                 h.w                    bush   5
## 228              highly                 trained   5
## 229               house                   chief   5
## 230                hunt               continues   5
## 231                hunt                  headed   5
## 232                hunt                    hoax   5
## 233             illegal                  aliens   5
## 234             illicit                  scheme   5
## 235         immigration                    bill   5
## 236          incredible                     job   5
## 237        intellectual                property   5
## 238                it’s                    time   5
## 239                 jon                  tester   5
## 240              leaked              classified   5
## 241               level                 playing   5
## 242       manufacturing                    jobs   5
## 243               march                     5th   5
## 244             massive                 amounts   5
## 245             massive                     tax   5
## 246             massive                   trade   5
## 247              mexico                  canada   5
## 248            military              protection   5
## 249             mueller                   witch   5
## 250                 nbc                    news   5
## 251             nuclear                 testing   5
## 252             nuclear                   tests   5
## 253                oval                  office   5
## 254               phony                  russia   5
## 255             playing                   field   5
## 256              police                officers   5
## 257                post                  office   5
## 258             primary                     win   5
## 259               raise                   taxes   5
## 260                real                    deal   5
## 261          regulation                    cuts   5
## 262                rick                 saccone   5
## 263              russia                   witch   5
## 264            saturday                   night   5
## 265              school                  safety   5
## 266             special                 council   5
## 267              strong                  border   5
## 268              strzok                    page   5
## 269          successful             businessman   5
## 270            talented                  people   5
## 271                 ted                    cruz   5
## 272                test                    site   5
## 273                text                messages   5
## 274                 tom                  fitton   5
## 275               total                disaster   5
## 276               total                disgrace   5
## 277               trade                   talks   5
## 278            trillion                 dollars   5
## 279                vets                     2nd   5
## 280                visa                 lottery   5
## 281            woodward                    book   5
## 282               world                     war   5
## 283                  13                    gang   4
## 284             abolish                     ice   4
## 285                adam                  schiff   4
## 286             african               americans   4
## 287                 air                   force   4
## 288            american                citizens   4
## 289            american                patriots   4
## 290            american            unemployment   4
## 291           annapolis                maryland   4
## 292           anonymous                  source   4
## 293              august                     7th   4
## 294          background                  checks   4
## 295                 bad                   trade   4
## 296              barack                   obama   4
## 297               based             immigration   4
## 298             billion                   trade   4
## 299               bless                 america   4
## 300                 bob                    dole   4
## 301              border                    laws   4
## 302             borders                   crime   4
## 303                bump                  stocks   4
## 304             clinton                  emails   4
## 305          conflicted                     bob   4
## 306         congressman                    andy   4
## 307      correspondents                  dinner   4
## 308               crime                  border   4
## 309               crime                   loves   4
## 310            criminal                 justice   4
## 311                 cut                    bill   4
## 312                cuts                military   4
## 313              debbie                stabenow   4
## 314               dirty                 dossier   4
## 315           dishonest               reporting   4
## 316               don’t                   exist   4
## 317              duluth               minnesota   4
## 318              easily                     win   4
## 319            election                 victory   4
## 320            existing              conditions   4
## 321           fantastic                governor   4
## 322                 fbi                   comey   4
## 323                 fbi                director   4
## 324                 fbi                  lovers   4
## 325                fisa                   court   4
## 326              fought                    hard   4
## 327          fraudulent                 dossier   4
## 328                 gun                    free   4
## 329             harvard                     law   4
## 330             hillary               clinton’s   4
## 331               house          correspondents   4
## 332         immigration                  system   4
## 333        intelligence               community   4
## 334             jobless                  claims   4
## 335                jobs                    maga   4
## 336               joint                   press   4
## 337              joseph                mccarthy   4
## 338                josh                  hawley   4
## 339               judge               kavanaugh   4
## 340                june                    12th   4
## 341               kanye                    west   4
## 342               keith                 rothfus   4
## 343                 las                   vegas   4
## 344               lover                   peter   4
## 345                maga                   rally   4
## 346                mark                   levin   4
## 347              martha                 mcsally   4
## 348              mccabe                  strzok   4
## 349            memorial                     day   4
## 350                mike                   pence   4
## 351             million                  people   4
## 352                moon                township   4
## 353             mueller                    team   4
## 354               north                  dakota   4
## 355         outstanding                     job   4
## 356                palm                   beach   4
## 357              patrol                  agents   4
## 358                 pay                 tribute   4
## 359               phony                   crime   4
## 360               phony                   story   4
## 361                 pre                existing   4
## 362           president                  george   4
## 363        presidential            proclamation   4
## 364              prison                  reform   4
## 365                 pro                    life   4
## 366              public                  safety   4
## 367               rally                 tickets   4
## 368             russian                    hoax   4
## 369              safety                security   4
## 370           sanctuary                policies   4
## 371              school                shooting   4
## 372           september                    11th   4
## 373             setting                 records   4
## 374            slippery                   james   4
## 375              social                   media   4
## 376         something’s               happening   4
## 377            spending                    bill   4
## 378                stay                   tuned   4
## 379               steel                industry   4
## 380                 tax              regulation   4
## 381               taxes           substantially   4
## 382              terror                  attack   4
## 383            tomorrow                   night   4
## 384               total                    hoax   4
## 385             totally              conflicted   4
## 386            township            pennsylvania   4
## 387               trade               agreement   4
## 388               trade                 surplus   4
## 389               trade                     war   4
## 390          tremendous                 success   4
## 391               trump                  agenda   4
## 392               trump                    team   4
## 393                 u.s                 history   4
## 394                 u.s                military   4
## 395                 u.s                   steel   4
## 396                vast                 amounts   4
## 397          washington                michigan   4
## 398           wonderful                  family   4
## 399               worst                   trade   4
## 400                  xi                 jinping   4
## 401                york                    city   4
## 402                  10                      00   3
## 403                 100                 billion   3
## 404                  13                   thugs   3
## 405                   2                      00   3
## 406                2018                election   3
## 407                2018                   world   3
## 408                  24                       7   3
## 409               243rd                birthday   3
## 410                 500                 billion   3
## 411                   6                      00   3
## 412                   6                  months   3
## 413                  60                 minutes   3
## 414                   7                    00pm   3
## 415                   7                trillion   3
## 416                 716                 billion   3
## 417             abiding               americans   3
## 418              acting                attorney   3
## 419            aluminum              industries   3
## 420            american                   dream   3
## 421            american               president   3
## 422            american                  public   3
## 423              andrew                   cuomo   3
## 424              andrew                  gillum   3
## 425              andrew                mccarthy   3
## 426                andy                    barr   3
## 427               armed                  forces   3
## 428                arms                    race   3
## 429                 bad                  people   3
## 430                 bad                 stories   3
## 431             barbara                    bush   3
## 432             biggest               political   3
## 433           bilateral                 meeting   3
## 434          birthright             citizenship   3
## 435               black               americans   3
## 436                blue                    wave   3
## 437                 bob                   casey   3
## 438            business                optimism   3
## 439          california               wildfires   3
## 440            campaign                colluded   3
## 441               can’t                     win   3
## 442            carolina                governor   3
## 443                cars                  coming   3
## 444           catherine                herridge   3
## 445               chris                 farrell   3
## 446                city                illinois   3
## 447              claire               mccaskill   3
## 448               coast                   guard   3
## 449           companies                  moving   3
## 450            complete                   total   3
## 451          confidence                    hits   3
## 452         congressman                     ron   3
## 453             corrupt                  cities   3
## 454             corrupt              mainstream   3
## 455           country’s                 history   3
## 456               court                decision   3
## 457               court                justices   3
## 458               crime               collusion   3
## 459               crime                  strong   3
## 460             crooked               hillary’s   3
## 461             deepest              sympathies   3
## 462             deleted                  emails   3
## 463            delivery                     boy   3
## 464                 dem                   votes   3
## 465            democrat                inspired   3
## 466            democrat                   votes   3
## 467           democrats                   fault   3
## 468         derangement                syndrome   3
## 469         discredited                 dossier   3
## 470         discredited                 mueller   3
## 471             doesn’t                   exist   3
## 472                drug                  prices   3
## 473            economic                 success   3
## 474             elected               president   3
## 475         enforcement                 officer   3
## 476         enforcement           professionals   3
## 477                erie            pennsylvania   3
## 478               exact                opposite   3
## 479           expensive                   witch   3
## 480            facebook                     ads   3
## 481                fair                    deal   3
## 482                fair                   share   3
## 483              fallen                  heroes   3
## 484               false              statements   3
## 485           fantastic                 evening   3
## 486           fantastic                 senator   3
## 487             farmers                ranchers   3
## 488                 fbi           investigation   3
## 489             federal                   judge   3
## 490               fight                    hard   3
## 491                fine                  person   3
## 492               fired                     fbi   3
## 493             florida                     ron   3
## 494             forever                grateful   3
## 495                free                   trade   3
## 496                free                   zones   3
## 497          government                shutdown   3
## 498            governor                    rick   3
## 499             granite                    city   3
## 500               happy                   243rd   3
## 501             heavily              conflicted   3
## 502            helsinki                 finland   3
## 503            hispanic            unemployment   3
## 504            historic                     tax   3
## 505                 hit                      50   3
## 506            homeland                security   3
## 507               house                 councel   3
## 508               house                 counsel   3
## 509               house                  senate   3
## 510             houston                   texas   3
## 511                hyde                   smith   3
## 512           illegally                  leaked   3
## 513         immigration                  crisis   3
## 514        independence                     day   3
## 515         independent                 counsel   3
## 516                it’s                  called   3
## 517               james                 comey’s   3
## 518                jeff                   flake   3
## 519              jerome                   corsi   3
## 520                 jim                 justice   3
## 521                 job                 killing   3
## 522                jobs                  defend   3
## 523                 joe                digenova   3
## 524                john                   kerry   3
## 525            jonathan                  turley   3
## 526               katie               arrington   3
## 527             killing             regulations   3
## 528               korea                   china   3
## 529               larry                  kudlow   3
## 530                 law                 abiding   3
## 531                 law               professor   3
## 532                 law                  school   3
## 533                left                    wing   3
## 534                 lou                   dobbs   3
## 535              lovely                    lisa   3
## 536                 low                   taxes   3
## 537               lower                   taxes   3
## 538              lowest            unemployment   3
## 539                lyin                   james   3
## 540                main                  street   3
## 541              marine                   corps   3
## 542                mark                 sanford   3
## 543               means                    jobs   3
## 544               media                coverage   3
## 545               media                   hates   3
## 546             medical                  center   3
## 547                mesa                 arizona   3
## 548                 mid                    term   3
## 549                 mid                   terms   3
## 550             million                  dollar   3
## 551               mitch               mcconnell   3
## 552              months                     ago   3
## 553             mueller           investigation   3
## 554             mueller                  report   3
## 555            national                  border   3
## 556            national                 defense   3
## 557                nato               countries   3
## 558         neverforget           september11th   3
## 559                news                 doesn’t   3
## 560                news              washington   3
## 561            northern                  border   3
## 562             nuclear                  option   3
## 563             nuclear                    test   3
## 564             omnibus                spending   3
## 565               paris               agreement   3
## 566              pastor                 brunson   3
## 567             patrick                morrisey   3
## 568              patrol                 council   3
## 569                paul                    ryan   3
## 570                 pay                 tariffs   3
## 571              people                  coming   3
## 572              people                   start   3
## 573               phone                 company   3
## 574               phony                 russian   3
## 575               phony                 sources   3
## 576          pittsburgh            pennsylvania   3
## 577           political                  agenda   3
## 578           political                purposes   3
## 579           political                 reasons   3
## 580             popular              republican   3
## 581        prescription                   drugs   3
## 582           president                  macron   3
## 583             protect                criminal   3
## 584             protect                  europe   3
## 585             putting                 america   3
## 586             radical                    left   3
## 587              reagan                     bob   3
## 588              record                    pace   3
## 589              record                 setting   3
## 590                reed                 medical   3
## 591          republican              leadership   3
## 592          republican                   votes   3
## 593            returned                    home   3
## 594             richard              blumenthal   3
## 595              rigged           investigation   3
## 596              rigged                  russia   3
## 597                 rod              rosenstein   3
## 598                rush                limbaugh   3
## 599              russia           investigation   3
## 600              russia                   probe   3
## 601                 san                   diego   3
## 602               scott                  pruitt   3
## 603               scott                  walker   3
## 604            security               clearance   3
## 605             senator                    john   3
## 606             senator                     jon   3
## 607           sheriff’s                  office   3
## 608               short                    time   3
## 609              single                     day   3
## 610                slow                 walking   3
## 611             special                 councel   3
## 612             special                election   3
## 613             special                  people   3
## 614                stop                  people   3
## 615              strzok                  firing   3
## 616              stupid                   trade   3
## 617         switzerland                   wef18   3
## 618             tariffs                barriers   3
## 619                term               elections   3
## 620            terrible                     job   3
## 621                time                  record   3
## 622               times                   wrote   3
## 623                 top                 student   3
## 624               total                    joke   3
## 625               total                    mess   3
## 626               total                 support   3
## 627               tower                 meeting   3
## 628               trade            relationship   3
## 629             treated                  fairly   3
## 630          tremendous               potential   3
## 631          tremendous                pressure   3
## 632               trump             derangement   3
## 633               trump               proclaims   3
## 634               trump                  russia   3
## 635                 u.s                attorney   3
## 636                 u.s                   china   3
## 637                 u.s               companies   3
## 638                 u.s                    pays   3
## 639                 u.s                 supreme   3
## 640               u.s.a                    maga   3
## 641          unredacted               documents   3
## 642               vegas                  nevada   3
## 643            vladimir                   putin   3
## 644                vote                    maga   3
## 645               wacky                 omarosa   3
## 646              walter                    reed   3
## 647                 war                   games   3
## 648                 war                    hero   3
## 649          washington                examiner   3
## 650            wasteful                spending   3
## 651                weak                    laws   3
## 652                wife                   nelly   3
## 653               world                 leaders   3
## 654                   1                 million   2
## 655                 1.3                 billion   2
## 656                 1.6                 billion   2
## 657                  10                democrat   2
## 658               100th             anniversary   2
## 659                  11                      30   2
## 660                  12                trillion   2
## 661              15,000                    jobs   2
## 662                  17                 million   2
## 663                   2              commitment   2
## 664                2026                   world   2
## 665                   3                    days   2
## 666                   3                 minutes   2
## 667                   3                     p.m   2
## 668                  30                     a.m   2
## 669                  30                     p.m   2
## 670                3000                  people   2
## 671                   4                       9   2
## 672                   5                 billion   2
## 673                 500                    days   2
## 674                  51                   votes   2
## 675              55,000               factories   2
## 676                   6                 million   2
## 677           6,000,000           manufacturing   2
## 678                  60                    vote   2
## 679                   7                     365   2
## 680                70th             anniversary   2
## 681                73rd                 session   2
## 682                 7th                    troy   2
## 683                   8                      30   2
## 684                   9                   00pme   2
## 685                   9                  months   2
## 686                  90                    days   2
## 687                 a.g                    jeff   2
## 688                 a.m                 eastern   2
## 689                 a.m                   enjoy   2
## 690                 abc                     cbs   2
## 691                 abc                    news   2
## 692            absolute                   power   2
## 693         accumulated                   trade   2
## 694              acting                 swiftly   2
## 695                adam                  laxalt   2
## 696          additional                 dollars   2
## 697                adds                   trade   2
## 698               adept                teachers   2
## 699           adjusting                 imports   2
## 700             admiral                 jackson   2
## 701        agricultural                 product   2
## 702        agricultural                products   2
## 703               allen                  county   2
## 704            aluminum                 tariffs   2
## 705              amazon              washington   2
## 706          ambassador                   nikki   2
## 707           amendment                    vote   2
## 708           america’s                  future   2
## 709           america’s                 workers   2
## 710            american                cemetery   2
## 711            american               democracy   2
## 712            american                    flag   2
## 713            american                    hero   2
## 714            american                patients   2
## 715            american                  spirit   2
## 716            american                taxpayer   2
## 717            american               taxpayers   2
## 718           americans               receiving   2
## 719              andres                  manuel   2
## 720              andrew              napolitano   2
## 721             andrews                     air   2
## 722              angela                  merkel   2
## 723              animal                   assad   2
## 724              annual              convention   2
## 725            approval                    rate   2
## 726           attempted                sabotage   2
## 727            attorney                  client   2
## 728              august                     2nd   2
## 729                auto               companies   2
## 730                 bad                   ideas   2
## 731                 bad                policies   2
## 732              ballot                     box   2
## 733            barletta                  family   2
## 734            barriers                 tariffs   2
## 735               based                  system   2
## 736           beautiful                ceremony   2
## 737           beautiful                  moment   2
## 738                beto                o’rourke   2
## 739           bilateral                   deals   2
## 740           bilateral                   trade   2
## 741                 bin                   laden   2
## 742          biological                 threats   2
## 743          bipartisan                 support   2
## 744               black                hispanic   2
## 745               black              leadership   2
## 746               black            unemployment   2
## 747             boarder                security   2
## 748               bobby                  knight   2
## 749                book                   liars   2
## 750                book                 spygate   2
## 751              border               crossings   2
## 752              border               democrats   2
## 753              border                    dems   2
## 754              border                   fight   2
## 755              border             legislation   2
## 756              border                   loves   2
## 757              border              protection   2
## 758                brad                blakeman   2
## 759             brandon                    judd   2
## 760               brave                  heroes   2
## 761               brave                  police   2
## 762              breast                 feeding   2
## 763               bruce                   ohr’s   2
## 764            brussels                 belgium   2
## 765               build                    wall   2
## 766                bush                       1   2
## 767        california's                 illegal   2
## 768              called               collusion   2
## 769              called                comedian   2
## 770              called               president   2
## 771            campaign                    paid   2
## 772            campaign                  slogan   2
## 773         campaigning                    hard   2
## 774               can’t                    lose   2
## 775              canada                 charges   2
## 776           candidate                    john   2
## 777                cape               girardeau   2
## 778             capital                 gazette   2
## 779             caravan                 heading   2
## 780            carolina                   south   2
## 781                cash                     cow   2
## 782           celebrate                hispanic   2
## 783            champion                     _jr   2
## 784            cherokee                  nation   2
## 785               chief                economic   2
## 786               chief                 justice   2
## 787            children                    safe   2
## 788             chinese                   phone   2
## 789               chris                 swecker   2
## 790               chris                 wallace   2
## 791               chuck                    todd   2
## 792               cindy                    hyde   2
## 793               civil                  rights   2
## 794               clean                     air   2
## 795               clean                    coal   2
## 796              client               privilege   2
## 797             clinton                     dnc   2
## 798             clinton                   frame   2
## 799             clinton                  russia   2
## 800              closed                    door   2
## 801                 cnn                    fake   2
## 802               coach                   bobby   2
## 803               comey                   lynch   2
## 804               comey                   memos   2
## 805             comey’s                  firing   2
## 806           committee                hearings   2
## 807           companies                earnings   2
## 808             company                     zte   2
## 809                 con                     job   2
## 810     congratulations               _football   2
## 811     congratulations                 america   2
## 812     congratulations                  marsha   2
## 813     congratulations                     usa   2
## 814       congressional                district   2
## 815         congressman                     7th   2
## 816         congressman                   david   2
## 817         congressman                   kevin   2
## 818         congressman                    pete   2
## 819         congressman                   peter   2
## 820         congressman                     tom   2
## 821       congresswoman                  maxine   2
## 822             corrupt                     fbi   2
## 823             corrupt                  russia   2
## 824             counsel                     don   2
## 825             counter            intelligence   2
## 826             country                    safe   2
## 827             country                  strong   2
## 828             country                  unsafe   2
## 829           country’s                 economy   2
## 830              county                 florida   2
## 831              county               sheriff’s   2
## 832              county                     war   2
## 833               court                  system   2
## 834                 cow                   nafta   2
## 835               crazy                  bernie   2
## 836               crazy                  maxine   2
## 837               crime                  coming   2
## 838               crime                    dems   2
## 839               crime                    rate   2
## 840            criminal                elements   2
## 841            criminal                 illegal   2
## 842           crooked’s                  emails   2
## 843               crowd                 tonight   2
## 844               crown                  prince   2
## 845           crumbling          infrastructure   2
## 846                 cut                    jobs   2
## 847                  da                    nang   2
## 848                daca              recipients   2
## 849               daily                   basis   2
## 850                dana             rohrabacher   2
## 851           dangerous                criminal   2
## 852           dangerous               criminals   2
## 853           dangerous                southern   2
## 854              daniel               henninger   2
## 855               danny               tarkanian   2
## 856             darrell                    issa   2
## 857            daughter                  ivanka   2
## 858               david                 kustoff   2
## 859                dean                  heller   2
## 860               death                 penalty   2
## 861                 deb                 fischer   2
## 862              debbie               wasserman   2
## 863             defense                   james   2
## 864                 dem               operative   2
## 865            democrat                  excuse   2
## 866            democrat                     mob   2
## 867            democrat                   thugs   2
## 868          democratic                   party   2
## 869           democrats                continue   2
## 870           democrats                historic   2
## 871           democrats                    paid   2
## 872                dems                   can’t   2
## 873           departing              washington   2
## 874              deputy                     a.g   2
## 875               devin                   nunes   2
## 876              didn’t                    care   2
## 877              didn’t                   obama   2
## 878              didn’t               president   2
## 879            director               brennan’s   2
## 880            director                    gina   2
## 881            director                   james   2
## 882            disaster             declaration   2
## 883          disclosure               agreement   2
## 884          discussing                   north   2
## 885           disgraced                     fbi   2
## 886         disgraceful                   witch   2
## 887          disgusting                   witch   2
## 888           dishonest                   media   2
## 889                 dna                    test   2
## 890                 dnc                 dossier   2
## 891             doesn’t              understand   2
## 892              dollar                  yearly   2
## 893             dollars                     bad   2
## 894               don’t                    fall   2
## 895               don’t                  forget   2
## 896               don’t                   watch   2
## 897              donald                 trump’s   2
## 898                doug                  schoen   2
## 899                drug                 pricing   2
## 900                 due                 process   2
## 901                east                   coast   2
## 902                easy                    wins   2
## 903            economic                 advisor   2
## 904            economic                  growth   2
## 905            economic                  health   2
## 906            economic                    news   2
## 907            economic                   power   2
## 908            economic                 records   2
## 909             economy                    jobs   2
## 910               edwin                 jackson   2
## 911            election                   night   2
## 912            election                 results   2
## 913            election                    time   2
## 914           electoral                 college   2
## 915              entire                barletta   2
## 916                eric                   trump   2
## 917         everlasting               gratitude   2
## 918       exceptionally               qualified   2
## 919        experimental              treatments   2
## 920            extended                  period   2
## 921       extraordinary              prosperity   2
## 922       extraordinary                   woman   2
## 923                eyes                   chuck   2
## 924           factories               6,000,000   2
## 925                fake                     cnn   2
## 926                fake                   media   2
## 927                fake                     nbc   2
## 928                fake               reporting   2
## 929                fake                   story   2
## 930               false             accusations   2
## 931               false                 stories   2
## 932           fantastic                     guy   2
## 933           fantastic               magarally   2
## 934             farrell                judicial   2
## 935             fastest                    pace   2
## 936            favorite               president   2
## 937                 fbi                  agents   2
## 938                 fbi                  giving   2
## 939                 fbi                 justice   2
## 940                 fbi                   lover   2
## 941                 fbi                   texts   2
## 942              female            unemployment   2
## 943             fighter                     jet   2
## 944          filibuster                    rule   2
## 945               final                decision   2
## 946               final                  report   2
## 947             finally                 putting   2
## 948                fine               gentleman   2
## 949                fire                   james   2
## 950                fisa                 warrant   2
## 951             florida         congratulations   2
## 952             florida                  school   2
## 953             florida                  strong   2
## 954                food                  stamps   2
## 955               force                    base   2
## 956             foreign                     aid   2
## 957             foreign                 nations   2
## 958              forest              management   2
## 959                fort                    drum   2
## 960                fort                   wayne   2
## 961              fought                  fought   2
## 962                 fox                    news   2
## 963              france                   makes   2
## 964              french               president   2
## 965              friend                   prime   2
## 966              friend                   terry   2
## 967               front                    lawn   2
## 968               front                    page   2
## 969             funding                    bill   2
## 970             funeral                 service   2
## 971              future               president   2
## 972                 gag                 clauses   2
## 973           general’s                  report   2
## 974             georgia                  stacey   2
## 975           girardeau                missouri   2
## 976               god’s                   grace   2
## 977                 gop                 primary   2
## 978                 gop                     tax   2
## 979          government                 funding   2
## 980          government                  stands   2
## 981                 gps                  fusion   2
## 982           guatemala                honduras   2
## 983       gubernatorial               candidate   2
## 984                 gun                   adept   2
## 985           happening                    maga   2
## 986               happy                national   2
## 987               happy            thanksgiving   2
## 988                hard                    line   2
## 989         hardworking                american   2
## 990         hardworking               americans   2
## 991               harry                    reid   2
## 992             harvard                    yale   2
## 993             heavily                redacted   2
## 994          helicopter                   crash   2
## 995                hero                 remains   2
## 996              highly             restrictive   2
## 997              highly           sophisticated   2
## 998             highway                  patrol   2
## 999            hispanic                american   2
## 1000           historic                   level   2
## 1001           historic                 meeting   2
## 1002                hit                    hard   2
## 1003                hit                     job   2
## 1004                hit                   piece   2
## 1005               hoax                designed   2
## 1006             honest               president   2
## 1007           horrible                  attack   2
## 1008           horrific                shooting   2
## 1009              hours                    maga   2
## 1010              house                      11   2
## 1011              house                     gop   2
## 1012              house               judiciary   2
## 1013              house             republicans   2
## 1014               huge                     win   2
## 1015               hunt                     led   2
## 1016          hurricane                  relief   2
## 1017                ill                prepared   2
## 1018            illegal                activity   2
## 1019            illegal                    scam   2
## 1020          illegally                    leak   2
## 1021          illegally                 started   2
## 1022        immigration                   bills   2
## 1023        immigration                policies   2
## 1024        immigration                  policy   2
## 1025           incoming                   storm   2
## 1026        incorrectly                reported   2
## 1027         incredible                     law   2
## 1028         incredible                  leader   2
## 1029         incredible                  people   2
## 1030         incredible                 workers   2
## 1031             indian                heritage   2
## 1032         individual                 mandate   2
## 1033         industrial                 workers   2
## 1034        ineffective             immigration   2
## 1035           innocent                   lives   2
## 1036          inspector               general’s   2
## 1037           inspired                    laws   2
## 1038          insurance                  policy   2
## 1039       intelligence               operation   2
## 1040      international             association   2
## 1041        interviewed                 tonight   2
## 1042            iranian               president   2
## 1043             ivanka                   trump   2
## 1044              james                 clapper   2
## 1045              james                 freeman   2
## 1046              james                  mattis   2
## 1047              jason                chaffetz   2
## 1048                jet                   pilot   2
## 1049             jewish               americans   2
## 1050                jim                  acosta   2
## 1051                jim                   brown   2
## 1052                job                openings   2
## 1053               jobs                 created   2
## 1054               john                    dowd   2
## 1055              judge                  andrew   2
## 1056              judge                 jeanine   2
## 1057              judge                     ken   2
## 1058           judicial                activism   2
## 1059          judiciary               committee   2
## 1060            justice                    dept   2
## 1061            justice               kavanaugh   2
## 1062            justice                  reform   2
## 1063             justin                 trudeau   2
## 1064             kansas                    city   2
## 1065                ken                   starr   2
## 1066              kevin                  cramer   2
## 1067              kevin                mccarthy   2
## 1068               koch                brothers   2
## 1069              korea                    free   2
## 1070              korea                 meeting   2
## 1071              korea               president   2
## 1072             korean               peninsula   2
## 1073             korean                     war   2
## 1074               kris                  kobach   2
## 1075              labor                     day   2
## 1076              labor                   force   2
## 1077               lake              okeechobee   2
## 1078          landslide                 victory   2
## 1079             larger                     gdp   2
## 1080             larger                   trade   2
## 1081                law                    firm   2
## 1082               laws                   don’t   2
## 1083         leadership                 america   2
## 1084         leadership                  summit   2
## 1085             leaked             information   2
## 1086             leakin                   james   2
## 1087              legal                 process   2
## 1088              legal                scholars   2
## 1089              liars                 leakers   2
## 1090            liberal                democrat   2
## 1091               lied                    lied   2
## 1092               life               synagogue   2
## 1093              lives                    lost   2
## 1094              lopez                 obrador   2
## 1095             losing                hundreds   2
## 1096            lottery                   catch   2
## 1097            lottery                congress   2
## 1098              lover                     fbi   2
## 1099              lover                    lisa   2
## 1100             lovers                   peter   2
## 1101                low                      iq   2
## 1102             lowest                   black   2
## 1103              macon                 georgia   2
## 1104          magarally                  replay   2
## 1105          magarally                 tonight   2
## 1106             maggie                haberman   2
## 1107              magic                    wand   2
## 1108             manuel                   lopez   2
## 1109               marc                thiessen   2
## 1110             marine                barracks   2
## 1111             marine                     war   2
## 1112               mark                  warner   2
## 1113             market                     hit   2
## 1114             martha                    roby   2
## 1115            massive                   crime   2
## 1116            massive                  inflow   2
## 1117              means                   crime   2
## 1118              media                 refuses   2
## 1119            melania                   trump   2
## 1120           memorial                coliseum   2
## 1121               mick                mulvaney   2
## 1122            midterm                election   2
## 1123           midterms                    dems   2
## 1124               mike                4indiana   2
## 1125               mike                   braun   2
## 1126           military                  family   2
## 1127            million                    jobs   2
## 1128           minister                 theresa   2
## 1129           minister                 trudeau   2
## 1130            missile                launches   2
## 1131            mission            accomplished   2
## 1132            mission                     act   2
## 1133           missoula                 montana   2
## 1134                mob                    rule   2
## 1135             modern                     day   2
## 1136             modern                 history   2
## 1137             mollie               hemingway   2
## 1138             monday                   night   2
## 1139            montana                 tonight   2
## 1140             months                likewise   2
## 1141                 ms                clifford   2
## 1142            mueller               conflicts   2
## 1143            mueller                 refuses   2
## 1144            mueller                  rigged   2
## 1145              multi                 million   2
## 1146              nafta               agreement   2
## 1147              nafta                    deal   2
## 1148              nancy                pelosi’s   2
## 1149           national                 council   2
## 1150            nations              ambassador   2
## 1151               nato                 meeting   2
## 1152               nato                 nations   2
## 1153                 nc                  senate   2
## 1154            network                    news   2
## 1155              newly                 elected   2
## 1156               news                coverage   2
## 1157               news               narrative   2
## 1158               news                     nbc   2
## 1159               news                networks   2
## 1160               news               reporting   2
## 1161               news                   story   2
## 1162               news                 talking   2
## 1163               news                  that’s   2
## 1164              night                    live   2
## 1165              nikki                   haley   2
## 1166           november                    11th   2
## 1167           november                election   2
## 1168            nuclear                    deal   2
## 1169            nuclear                missiles   2
## 1170            nuclear                 weapons   2
## 1171           numerous               countries   2
## 1172              obama                     era   2
## 1173     obstructionist               democrats   2
## 1174               ohio                michigan   2
## 1175               ohio                 tonight   2
## 1176              ohr’s                    wife   2
## 1177                oil              production   2
## 1178               opec                monopoly   2
## 1179             opioid                  crisis   2
## 1180             opioid                memorial   2
## 1181         opposition                   party   2
## 1182         opposition                research   2
## 1183            orlando                 florida   2
## 1184        outstanding                  person   2
## 1185                p.m                   enjoy   2
## 1186            pacific                   ocean   2
## 1187               page                     ohr   2
## 1188               page                   texts   2
## 1189                pan                  handle   2
## 1190             parade             celebrating   2
## 1191            parties               concerned   2
## 1192               pass                   tough   2
## 1193                pay                increase   2
## 1194             paying                  russia   2
## 1195             pelosi                 liberal   2
## 1196             pelosi                  puppet   2
## 1197             people                    died   2
## 1198             people                   don’t   2
## 1199             people                  forced   2
## 1200             people                  killed   2
## 1201             people                watching   2
## 1202             people               yesterday   2
## 1203           people’s                   lives   2
## 1204           personal            relationship   2
## 1205              peter                    king   2
## 1206       philadelphia                  eagles   2
## 1207              phony             discredited   2
## 1208              phony                 dossier   2
## 1209              phony                 stories   2
## 1210            playing                   games   2
## 1211               plea                    deal   2
## 1212                 pm                     abe   2
## 1213             police                  annual   2
## 1214           policies            california's   2
## 1215           policies              leadership   2
## 1216          political                  career   2
## 1217          political                    hack   2
## 1218          political                 leaders   2
## 1219          political                 pundits   2
## 1220          political                scandals   2
## 1221            polling               locations   2
## 1222             postal                  system   2
## 1223           powerful                    vote   2
## 1224            praises                   trump   2
## 1225          president                deserves   2
## 1226          president                    moon   2
## 1227       presidential               candidate   2
## 1228       presidential                election   2
## 1229       presidential              harassment   2
## 1230       presidential                   medal   2
## 1231           previous          administration   2
## 1232            pricing               blueprint   2
## 1233            primary                election   2
## 1234           property                   theft   2
## 1235            protect                american   2
## 1236            protect               americans   2
## 1237            protect                  people   2
## 1238          purposely                   wrong   2
## 1239            raising                   rates   2
## 1240            rapidly             approaching   2
## 1241          rasmussen                    poll   2
## 1242               rate                  lawyer   2
## 1243               real              corruption   2
## 1244               real                  crimes   2
## 1245               real                 fighter   2
## 1246               real                   story   2
## 1247             reason              whatsoever   2
## 1248         recognized                 russian   2
## 1249             record                    lows   2
## 1250          religious                 freedom   2
## 1251           remember                 alabama   2
## 1252                rep                   kevin   2
## 1253        represented                  ronald   2
## 1254         republican               candidate   2
## 1255         republican            conservative   2
## 1256         republican              nomination   2
## 1257         republican                 party’s   2
## 1258         republican                  voters   2
## 1259        republicans               democrats   2
## 1260          requested               documents   2
## 1261             rescue                 efforts   2
## 1262          respected                 nominee   2
## 1263                rex               tillerson   2
## 1264               rich               countries   2
## 1265            richard                    burr   2
## 1266               rick                   4pa18   2
## 1267             rigged                 russian   2
## 1268             rigged                  system   2
## 1269                rob                 goldman   2
## 1270             robert                  wilkie   2
## 1271             rocket                launches   2
## 1272                ron                 jackson   2
## 1273               rose                  garden   2
## 1274               rudy                giuliani   2
## 1275            running                 machine   2
## 1276             russia                 clinton   2
## 1277             russia                  russia   2
## 1278            russian                oligarch   2
## 1279             sacred                    duty   2
## 1280                san                    juan   2
## 1281               save                billions   2
## 1282               save                   money   2
## 1283              scale                   crime   2
## 1284             school                violence   2
## 1285              scott                    free   2
## 1286          secretary                  mattis   2
## 1287          secretary                  pompeo   2
## 1288           security                  safety   2
## 1289             senate               confirmed   2
## 1290             senate            intelligence   2
## 1291             senate                    maga   2
## 1292             senate                 primary   2
## 1293            senator                    bill   2
## 1294            senator                  claire   2
## 1295            senator                    mark   2
## 1296            senator                 richard   2
## 1297            senator                     ted   2
## 1298             series                champion   2
## 1299           sessions                 justice   2
## 1300            setting                economic   2
## 1301            setting                  record   2
## 1302              short                  period   2
## 1303              siege                     2nd   2
## 1304           sinclair               broadcast   2
## 1305             sleepy                    eyes   2
## 1306               slow                  walked   2
## 1307              smart                 america   2
## 1308              smart                    fast   2
## 1309              smart                   loves   2
## 1310           smocking                     gun   2
## 1311            smoking                     gun   2
## 1312             smooth                 running   2
## 1313             solemn                     day   2
## 1314                son                     don   2
## 1315             source                       1   2
## 1316              south                  korean   2
## 1317              space                   force   2
## 1318           speaking                  loudly   2
## 1319            special                     guy   2
## 1320        spectacular                     job   2
## 1321        spectacular                  person   2
## 1322             stacey                  abrams   2
## 1323              staff                    john   2
## 1324              staff               replacing   2
## 1325              stand                 proudly   2
## 1326              start                  buying   2
## 1327              start             immediately   2
## 1328          statement                   we’re   2
## 1329             staten                  island   2
## 1330            statute               violation   2
## 1331              steel                dynamics   2
## 1332              stone                    cold   2
## 1333               stop                fighting   2
## 1334               stop                  school   2
## 1335           stopping                  people   2
## 1336             strong                  dollar   2
## 1337             strong             immigration   2
## 1338             strong                   smart   2
## 1339          strongest             endorsement   2
## 1340           strongly                 endorse   2
## 1341           strongly                 suggest   2
## 1342             summit                 meeting   2
## 1343              super                 liberal   2
## 1344            support                   david   2
## 1345             taking               advantage   2
## 1346            talking                   heads   2
## 1347              tampa                 florida   2
## 1348             target                   trump   2
## 1349               task                   force   2
## 1350                tax                    cars   2
## 1351                tax                  paying   2
## 1352                tax                  reform   2
## 1353           terrible                 florida   2
## 1354           terrible               situation   2
## 1355           terrible                   trade   2
## 1356          terrorist                  attack   2
## 1357           thursday                  august   2
## 1358              tiger                   woods   2
## 1359                tim                    cook   2
## 1360               time                     ago   2
## 1361               time                kneeling   2
## 1362               time                  warner   2
## 1363                tom                    reed   2
## 1364            tonight                    maga   2
## 1365              total                    bias   2
## 1366              total                     con   2
## 1367              total                    fake   2
## 1368              total                 fiction   2
## 1369              total                   fraud   2
## 1370              total                   phony   2
## 1371              total                    sham   2
## 1372            totally               abandoned   2
## 1373            totally                 crooked   2
## 1374            totally             discredited   2
## 1375            totally                 illegal   2
## 1376            totally                unhinged   2
## 1377              tough                    laws   2
## 1378              tough                    race   2
## 1379              trade                 anymore   2
## 1380              trade                disputes   2
## 1381              trade                    hope   2
## 1382              trade               imbalance   2
## 1383              trade                military   2
## 1384              trade            negotiations   2
## 1385              trade               penalties   2
## 1386            trading            relationship   2
## 1387           treasure                   trove   2
## 1388         tremendous                governor   2
## 1389         tremendous                  talent   2
## 1390               true                american   2
## 1391              trump         administrations   2
## 1392              trump                approval   2
## 1393              trump              conspiracy   2
## 1394              trump                 defiant   2
## 1395              trump                 dossier   2
## 1396              trump                  family   2
## 1397              trump                      jr   2
## 1398              trump                    news   2
## 1399              trump              recognized   2
## 1400              truth                 doesn’t   2
## 1401            tuesday                   night   2
## 1402           tuesdays                 primary   2
## 1403            turkish                  prison   2
## 1404                 ty                    cobb   2
## 1405                u.s                 coffers   2
## 1406                u.s                 economy   2
## 1407                u.s                 embassy   2
## 1408                u.s                 farmers   2
## 1409                u.s                 marines   2
## 1410                u.s                    post   2
## 1411                u.s                products   2
## 1412              u.s.a                   trade   2
## 1413          unchecked                   crime   2
## 1414   unconstitutional               sanctuary   2
## 1415       unemployment                  claims   2
## 1416       unemployment                  lowest   2
## 1417             united                 kingdom   2
## 1418               vast                    sums   2
## 1419               vets                    vote   2
## 1420            victory                 tonight   2
## 1421            violent                criminal   2
## 1422             voting                democrat   2
## 1423               wall               democrats   2
## 1424                war                memorial   2
## 1425          wasserman                 schultz   2
## 1426              waste                   money   2
## 1427           watching                 closely   2
## 1428               wave                   means   2
## 1429              wayne                 indiana   2
## 1430              we’ll                    stop   2
## 1431               west                    wing   2
## 1432             wilbur                    ross   2
## 1433                win               elections   2
## 1434              wiped                   clean   2
## 1435          wonderful               christian   2
## 1436          wonderful                  person   2
## 1437              world                   peace   2
## 1438              world                   trade   2
## 1439              world                    wars   2
## 1440              worst                     fbi   2
## 1441              worst             immigration   2
## 1442              wrong                  people   2
## 1443               york               democrats   2
## 1444               <NA>                    <NA>   2
## 1445          _football                   black   1
## 1446           _paulsen                     2cd   1
## 1447             _pence                   brian   1
## 1448             _regan               interview   1
## 1449                  0                  source   1
## 1450                 00                    rose   1
## 1451               00pm                    maga   1
## 1452               00pm                     mdt   1
## 1453              00pme                 tickets   1
## 1454              00pme                tomorrow   1
## 1455         0pwiwchgbh             jobsnotmobs   1
## 1456         0pwiwchgbh                    maga   1
## 1457         0pwiwchgbh               magarally   1
## 1458         0pwiwchgbh                tomorrow   1
## 1459         0pwiwcq4mh                    maga   1
## 1460         0pwiwcq4mh               magarally   1
## 1461                  1                      00   1
## 1462                  1                    1024   1
## 1463                  1                       2   1
## 1464                  1                    45pm   1
## 1465                  1                  dollar   1
## 1466                  1              kidnapping   1
## 1467                  1                  slowly   1
## 1468                  1                trillion   1
## 1469                  1                   trump   1
## 1470              1,800                 marines   1
## 1471                1.7                 billion   1
## 1472                1.8                 percent   1
## 1473                1.9                 million   1
## 1474                 10                    30am   1
## 1475                 10               americans   1
## 1476                 10                 million   1
## 1477         10,000,000                 russian   1
## 1478                100                   acres   1
## 1479                100                colluded   1
## 1480                100                 correct   1
## 1481                100                 percent   1
## 1482                100              republican   1
## 1483               1000                  people   1
## 1484              100th           anniversaries   1
## 1485              100th                birthday   1
## 1486                101               utilities   1
## 1487              102nd                    time   1
## 1488              10pme                   enjoy   1
## 1489                 11                      00   1
## 1490               11.7                 million   1
## 1491               11th                    1918   1
## 1492               11th                district   1
## 1493               11th                memorial   1
## 1494                 12                    boys   1
## 1495                 12                  months   1
## 1496                 12                russians   1
## 1497             12,000                children   1
## 1498               12th           congressional   1
## 1499                 13                   clean   1
## 1500                 13                  coming   1
## 1501                 13                   gangs   1
## 1502                 13                hardened   1
## 1503                 13               including   1
## 1504                 13                  people   1
## 1505                 13                    rick   1
## 1506                 13                     run   1
## 1507                 13               yesterday   1
## 1508                130                hercules   1
## 1509                 14                    2018   1
## 1510                 14                    days   1
## 1511                 14                   month   1
## 1512                 14                  season   1
## 1513                142                    gang   1
## 1514               14th               amendment   1
## 1515                 15                     a.m   1
## 1516                 15                 minutes   1
## 1517             15,000                   votes   1
## 1518             15,000               wisconsin   1
## 1519                150                 billion   1
## 1520                151                 million   1
## 1521                 16                    2018   1
## 1522                 16                election   1
## 1523                 16                  months   1
## 1524                 16                  people   1
## 1525                166               innocents   1
## 1526                 17               americans   1
## 1527                 17               increased   1
## 1528                 17                   month   1
## 1529                 17                  months   1
## 1530            170,000                   acres   1
## 1531                17b                     tax   1
## 1532                 18                     a.m   1
## 1533                 18                 billion   1
## 1534                 18                  deaths   1
## 1535                 18                  months   1
## 1536            185,000                estimate   1
## 1537            18years              rebuilding   1
## 1538             19,000                   texts   1
## 1539               1918                   world   1
## 1540               1983                 roughly   1
## 1541               1pme                   enjoy   1
## 1542                  2                    00pm   1
## 1543                  2                   00pme   1
## 1544                  2                       1   1
## 1545                  2                    2018   1
## 1546                  2                      30   1
## 1547                  2                   badly   1
## 1548                  2                    days   1
## 1549                  2                  didn’t   1
## 1550                  2                 million   1
## 1551                  2                  powers   1
## 1552                  2                   weeks   1
## 1553          2,000,000                 barrels   1
## 1554              2,500                iranians   1
## 1555              2,900                  target   1
## 1556                2.1                 billion   1
## 1557                2.6                 billion   1
## 1558                 20                 billion   1
## 1559                 20                  tariff   1
## 1560         20,000,000                   witch   1
## 1561                200                  people   1
## 1562               2006               democrats   1
## 1563               2008                    2011   1
## 1564               2014                    2016   1
## 1565               2014                 picture   1
## 1566               2014                pictures   1
## 1567               2015                      22   1
## 1568               2015                 spygate   1
## 1569               2016                      36   1
## 1570               2016                     gdp   1
## 1571               2016                  people   1
## 1572               2016            presidential   1
## 1573               2017                      14   1
## 1574               2017               increased   1
## 1575               2017                    ncaa   1
## 1576               2017                    news   1
## 1577               2017                   world   1
## 1578               2018                       0   1
## 1579               2018            commencement   1
## 1580               2018           international   1
## 1581               2020                 tonight   1
## 1582               2032                olympics   1
## 1583                 21                     age   1
## 1584                 21                trillion   1
## 1585               21st                 century   1
## 1586                 22                    2016   1
## 1587         22,000,000                  report   1
## 1588                230                 million   1
## 1589              236th             anniversary   1
## 1590               23rd                district   1
## 1591                 24                   hours   1
## 1592                241                american   1
## 1593                245               occasions   1
## 1594                 25                    2018   1
## 1595                 25                      50   1
## 1596                 25                 billion   1
## 1597                 25                     pro   1
## 1598             25,000               yesterday   1
## 1599                250                 billion   1
## 1600            250,000                    jobs   1
## 1601                 26                   court   1
## 1602                270                  tariff   1
## 1603                 28                    2017   1
## 1604                 28                    2018   1
## 1605                 28                 million   1
## 1606                 29               countries   1
## 1607                2nd                amendmen   1
## 1608                2nd           congressional   1
## 1609                2nd                   round   1
## 1610                  3                      00   1
## 1611                  3                      30   1
## 1612                  3                       5   1
## 1613                  3                 billion   1
## 1614                  3                circuits   1
## 1615                  3                 clapper   1
## 1616                  3                 dealing   1
## 1617                  3                   major   1
## 1618                  3                 million   1
## 1619                  3                 percent   1
## 1620                  3                   times   1
## 1621                  3               wonderful   1
## 1622              3,600              government   1
## 1623                3.4                 million   1
## 1624                3.5                 million   1
## 1625                3.7                 million   1
## 1626                3.7            unemployment   1
## 1627                3.7                   wages   1
## 1628                3.9            unemployment   1
## 1629                 30                     day   1
## 1630                 30                   hours   1
## 1631                 30                 victory   1
## 1632         30,000,000                   witch   1
## 1633                300                 billion   1
## 1634                300             nominations   1
## 1635                306                     223   1
## 1636               30pm                 tickets   1
## 1637             31,174                  people   1
## 1638                320            appointments   1
## 1639                 33                 billion   1
## 1640             33,000                  emails   1
## 1641                 36                    2017   1
## 1642                365                     jae   1
## 1643              382nd                birthday   1
## 1644                3rd                  marine   1
## 1645                3rd                    rate   1
## 1646                  4               americans   1
## 1647                  4                    days   1
## 1648                  4                     gdp   1
## 1649                  4                  growth   1
## 1650                  4             individuals   1
## 1651                  4                 million   1
## 1652                  4                  people   1
## 1653                  4                     run   1
## 1654                  4                   weeks   1
## 1655                4.1                 average   1
## 1656                4.1                     gdp   1
## 1657                4.2                 million   1
## 1658                4.7                     gdp   1
## 1659                 40                approval   1
## 1660         40,000,000            commissioner   1
## 1661                400                 billion   1
## 1662                400                national   1
## 1663                400                   pound   1
## 1664                401                     k’s   1
## 1665             401k’s                    rise   1
## 1666               40th               president   1
## 1667               45.6                 million   1
## 1668               45th                  annual   1
## 1669                 48                approval   1
## 1670               4pme               magarally   1
## 1671                4th               amendment   1
## 1672                4th                  chance   1
## 1673                4th                 holiday   1
## 1674                  5                       0   1
## 1675                  5                criminal   1
## 1676                  5                     p.m   1
## 1677                  5                   times   1
## 1678                  5                   weeks   1
## 1679                 50                 percent   1
## 1680             50,000                   votes   1
## 1681                500                   brian   1
## 1682                500                    hits   1
## 1683                500                   scott   1
## 1684            500,000           manufacturing   1
## 1685              500th                     day   1
## 1686               50th             anniversary   1
## 1687                 51                approval   1
## 1688                 51                 nuclear   1
## 1689                 51                 percent   1
## 1690                517                 billion   1
## 1691                 52                 billion   1
## 1692                 53                 million   1
## 1693                5th                district   1
## 1694                5th                    vote   1
## 1695                  6                   00ame   1
## 1696                  6                      15   1
## 1697                  6                    1944   1
## 1698                  6                    2008   1
## 1699                  6                    30pm   1
## 1700                 63                  months   1
## 1701                 63                  people   1
## 1702                 64                  people   1
## 1703            675,000                 crooked   1
## 1704                 68                 federal   1
## 1705                685                 million   1
## 1706                 69                      30   1
## 1707                  7               countries   1
## 1708                  7                 innings   1
## 1709                  7                meetings   1
## 1710                  7                   press   1
## 1711                  7                  summit   1
## 1712          7,036,000                     job   1
## 1713               7.14                 million   1
## 1714             70,000                   brave   1
## 1715                700                     716   1
## 1716                700                 billion   1
## 1717            700,000                 crooked   1
## 1718                702                    bill   1
## 1719                 71                 billion   1
## 1720               71st                birthday   1
## 1721               74th             anniversary   1
## 1722             77,000                  people   1
## 1723        77wabcradio                 morning   1
## 1724         7f3eoygxdn                    unga   1
## 1725               7pme                   rally   1
## 1726               7pme                 tickets   1
## 1727                7th                birthday   1
## 1728                7th                election   1
## 1729                7th                     fbi   1
## 1730                7th                  rarely   1
## 1731                7th                    time   1
## 1732                  8                      00   1
## 1733                  8                      18   1
## 1734                  8                 minutes   1
## 1735                  8                  months   1
## 1736                 80                     100   1
## 1737                800                 million   1
## 1738                817                 billion   1
## 1739                 87                   pages   1
## 1740               8pme                   enjoy   1
## 1741                  9                       0   1
## 1742                  9                      18   1
## 1743                  9              astronauts   1
## 1744                  9                   house   1
## 1745                  9                   rules   1
## 1746                  9                   votes   1
## 1747              9,000                  people   1
## 1748                9.4                 percent   1
## 1749                 90                approval   1
## 1750                 93                 approve   1
## 1751                 93                     bad   1
## 1752                 93               september   1
## 1753                a.g                   bruce   1
## 1754                a.g                    eric   1
## 1755                a.g                morrisey   1
## 1756                a.g                 patrick   1
## 1757                a.g                     rod   1
## 1758                a.g                sessions   1
## 1759                a.g              sulzberger   1
## 1760          abandoned             republicans   1
## 1761             abbott                 senator   1
## 1762                abc                  called   1
## 1763                abc                     lie   1
## 1764                abc              washington   1
## 1765                abe                 lincoln   1
## 1766         abolishing                     ice   1
## 1767             abrams                  fought   1
## 1768           abruptly                  killed   1
## 1769           abruptly              terminated   1
## 1770           absolute               gentleman   1
## 1771           absolute                     joy   1
## 1772           absolute                    king   1
## 1773         absolutely                   crazy   1
## 1774         absolutely            demonstrated   1
## 1775         absolutely              devastated   1
## 1776         absolutely             fascinating   1
## 1777         absolutely              impossible   1
## 1778         absolutely               justified   1
## 1779         absolutely                  killed   1
## 1780         absolutely                  lovely   1
## 1781         absolutely                    nuts   1
## 1782         absolutely             outstanding   1
## 1783         absolutely                     top   1
## 1784         absolutely             unthinkable   1
## 1785         absolutely                   vital   1
## 1786          abundance               including   1
## 1787              abuse                  canada   1
## 1788              abuse             christopher   1
## 1789              abuse                     fbi   1
## 1790              abuse                 missing   1
## 1791              abuse                 russian   1
## 1792                 ac                     sid   1
## 1793         acamtoual0                 remarks   1
## 1794             accept                  people   1
## 1795          accidents                  happen   1
## 1796       accomplished                officers   1
## 1797     accomplishment               potential   1
## 1798            account           contributions   1
## 1799            account                  lawyer   1
## 1800            account                  source   1
## 1801     accountability                     act   1
## 1802           accurate                election   1
## 1803         accurately                      90   1
## 1804         accurately                  fairly   1
## 1805            accused                    life   1
## 1806           achieved                   feats   1
## 1807          achieving                    it’s   1
## 1808               acid                  washed   1
## 1809       acknowledged                 triumph   1
## 1810                act   americanpatientsfirst   1
## 1811                act                     bad   1
## 1812                act                congress   1
## 1813                act                    fast   1
## 1814                act                    read   1
## 1815                act                  rigged   1
## 1816                act              roundtable   1
## 1817                act               yesterday   1
## 1818             acting           administrator   1
## 1819             acting                    page   1
## 1820             acting               secretary   1
## 1821             acting                   white   1
## 1822             action                     fix   1
## 1823             action                   we’ll   1
## 1824            actions                  border   1
## 1825             active                 shooter   1
## 1826           activity                    real   1
## 1827               acts                    hurt   1
## 1828             actual                 welfare   1
## 1829               adam                  leaves   1
## 1830               adam                  schitt   1
## 1831              added                 250,000   1
## 1832              added                     3.7   1
## 1833              added                   china   1
## 1834         additional                  border   1
## 1835         additional              corruption   1
## 1836         additional                    farm   1
## 1837         additional                   focus   1
## 1838         additional                  people   1
## 1839       additionally         congratulations   1
## 1840            address                  common   1
## 1841          addresses                 putting   1
## 1842         addressing                    mass   1
## 1843     administration                   force   1
## 1844     administration                 granted   1
## 1845     administration                   hears   1
## 1846     administration               legalized   1
## 1847     administration                official   1
## 1848     administration               president   1
## 1849     administration                provided   1
## 1850     administration                  stands   1
## 1851     administration                   start   1
## 1852   administration’s                    anti   1
## 1853   administration’s                policies   1
## 1854    administrations                 actions   1
## 1855    administrations                 efforts   1
## 1856    administrations                    post   1
## 1857    administrations                  record   1
## 1858      administrator                  _brock   1
## 1859            admiral                   alene   1
## 1860            admiral                  doctor   1
## 1861            admiral                     ron   1
## 1862            admiral                   ronny   1
## 1863         admonished                    john   1
## 1864                ads                     rob   1
## 1865          advantage                   plans   1
## 1866          adversary                  system   1
## 1867             affair                   prior   1
## 1868         affordable              medication   1
## 1869            afghans                   brave   1
## 1870                afl                     cio   1
## 1871             africa                    land   1
## 1872            african              government   1
## 1873          afternoon                    vote   1
## 1874                 ag                   lynch   1
## 1875                age                  limits   1
## 1876           agencies                     spy   1
## 1877             agency                   scott   1
## 1878             agenda                  claire   1
## 1879             agenda                 couched   1
## 1880             agenda                  tester   1
## 1881              agent                    lisa   1
## 1882              agent                   lover   1
## 1883              agent                  strzok   1
## 1884             agents                   peter   1
## 1885             agents            registration   1
## 1886         aggravated                  felons   1
## 1887                ago                     241   1
## 1888                ago                  animal   1
## 1889                ago                  people   1
## 1890                ago                    rank   1
## 1891                ago                resulted   1
## 1892              agony                    alec   1
## 1893              agree                     100   1
## 1894              agree          wholeheartedly   1
## 1895          agreement               breitbart   1
## 1896          agreement                   isn’t   1
## 1897          agreement                   money   1
## 1898          agreement                 signing   1
## 1899             agrees                   trump   1
## 1900       agricultural                business   1
## 1901              ahead             potentially   1
## 1902                aid               including   1
## 1903                aid               routinely   1
## 1904            ainsley               earnhardt   1
## 1905                air               collision   1
## 1906                air                 station   1
## 1907                air                   water   1
## 1908           aircraft                    wing   1
## 1909              aires               argentina   1
## 1910           airlines                  flight   1
## 1911                 al                   assad   1
## 1912            alabama                     2nd   1
## 1913            alabama              california   1
## 1914            alabama                    coal   1
## 1915            alabama                 crimson   1
## 1916            alabama                 farmers   1
## 1917            alabama                    vote   1
## 1918             alaska                    mike   1
## 1919               alec                 baldwin   1
## 1920              alene                   duerk   1
## 1921            alerted                  border   1
## 1922               alex                    azar   1
## 1923               alex                ovechkin   1
## 1924            alfonse                  capone   1
## 1925              alice                 johnson   1
## 1926             aliens               including   1
## 1927             aliens                    vote   1
## 1928             allied                invasion   1
## 1929             allies                  called   1
## 1930             allies                deserted   1
## 1931            allowed                   crime   1
## 1932            allowed                   white   1
## 1933           allowing                 massive   1
## 1934           allowing                millions   1
## 1935        alternative                   china   1
## 1936           aluminum                  prices   1
## 1937        amazed.they                couldn’t   1
## 1938            amazing             achievement   1
## 1939            amazing                     con   1
## 1940            amazing                 current   1
## 1941            amazing                 foxconn   1
## 1942            amazing                  heroes   1
## 1943            amazing                   lines   1
## 1944            amazing                  people   1
## 1945            amazing               political   1
## 1946            amazing                    rate   1
## 1947            amazing                   visit   1
## 1948            amazing                     win   1
## 1949             amazon                 costing   1
## 1950             amazon                    hard   1
## 1951           amazon’s                   chief   1
## 1952           amazon’s                shipping   1
## 1953         ambassador                 leonard   1
## 1954        ambassadors              executives   1
## 1955        ambassadors                  judges   1
## 1956           amendmen                   trade   1
## 1957          amendment                   crime   1
## 1958          amendment                   danny   1
## 1959          amendment                     god   1
## 1960          amendment                    john   1
## 1961          amendment                   kevin   1
## 1962          amendment                   lloyd   1
## 1963          amendment                    mike   1
## 1964          amendment                o’rourke   1
## 1965          amendment                    pete   1
## 1966          amendment                   scott   1
## 1967          amendment                    troy   1
## 1968          amendment                     win   1
## 1969            america                     800   1
## 1970            america               difficult   1
## 1971            america                  harley   1
## 1972            america                     nfl   1
## 1973            america                    rich   1
## 1974            america                  ronald   1
## 1975            america                    weak   1
## 1976            america                   witch   1
## 1977          america's                children   1
## 1978          america’s                  bright   1
## 1979          america’s                depleted   1
## 1980          america’s                 destiny   1
## 1981          america’s                economic   1
## 1982          america’s               elections   1
## 1983          america’s             environment   1
## 1984          america’s                    lack   1
## 1985          america’s                    leos   1
## 1986          america’s                military   1
## 1987          america’s                national   1
## 1988          america’s                  police   1
## 1989          america’s                  senior   1
## 1990          america’s                 service   1
## 1991          america’s                standing   1
## 1992          america’s            steelworkers   1
## 1993           american                   armed   1
## 1994           american             autoworkers   1
## 1995           american                   cable   1
## 1996           american               consumers   1
## 1997           american                   court   1
## 1998           american                disgrace   1
## 1999           american                 economy   1
## 2000           american                 embassy   1
## 2001           american                  energy   1
## 2002           american                 farmers   1
## 2003           american               greatness   1
## 2004           american                    grit   1
## 2005           american                hispanic   1
## 2006           american                 hostage   1
## 2007           american                includes   1
## 2008           american            independence   1
## 2009           american              industries   1
## 2010           american               ingenuity   1
## 2011           american                    jobs   1
## 2012           american                  leader   1
## 2013           american                    life   1
## 2014           american                 patriot   1
## 2015           american                   pride   1
## 2016           american               prisoners   1
## 2017           american                 remains   1
## 2018           american                  school   1
## 2019           american                 service   1
## 2020           american              servicemen   1
## 2021           american                    soil   1
## 2022           american                   steel   1
## 2023           american                   valor   1
## 2024           american                 victims   1
## 2025           american               workforce   1
## 2026         american’s                   faith   1
## 2027          americans                 charged   1
## 2028          americans               democrats   1
## 2029          americans                 deserve   1
## 2030          americans               hispanics   1
## 2031          americans                 illegal   1
## 2032          americans                   mlk50   1
## 2033          americans                   stand   1
## 2034          americans                 support   1
## 2035          americans                    vote   1
## 2036            amnesty               including   1
## 2037                amy                  kremer   1
## 2038            analyst                   gregg   1
## 2039            anarchy                 amnesty   1
## 2040             anchor                  babies   1
## 2041            anchors                  aweigh   1
## 2042             andrew                  choked   1
## 2043             andrew                 cuomo's   1
## 2044             andrew                weissman   1
## 2045             andrew              weissman’s   1
## 2046             andrew                 wheeler   1
## 2047            andrzej                    duda   1
## 2048               andy                   biggs   1
## 2049               andy                    lack   1
## 2050               andy                  mccabe   1
## 2051               andy                mccarthy   1
## 2052            angrily                accusing   1
## 2053              angry              conflicted   1
## 2054              angry                democrat   1
## 2055              angry                    left   1
## 2056              angry                 mueller   1
## 2057              angry                  people   1
## 2058            animals                   wrong   1
## 2059             animus                  strzok   1
## 2060            annie’s                 wedding   1
## 2061        anniversary         prouddeplorable   1
## 2062          announced                 tonight   1
## 2063          announced                   youth   1
## 2064             annual               _for_life   1
## 2065             annual                  easter   1
## 2066             annual                training   1
## 2067          anonymous                  letter   1
## 2068          anonymous                  person   1
## 2069            answers                   drain   1
## 2070             anthem                cpac2018   1
## 2071             anthem                     day   1
## 2072             anthem                  debate   1
## 2073             anthem                numerous   1
## 2074            anthony                 kennedy   1
## 2075            anthony                    tata   1
## 2076               anti                  israel   1
## 2077               anti                 semitic   1
## 2078               anti                semitism   1
## 2079               anti                trumpers   1
## 2080               anti                   trust   1
## 2081               anti                     usa   1
## 2082        anticipated                   china   1
## 2083        anticipated               companies   1
## 2084        anticipated                 meeting   1
## 2085          antitrust                  claims   1
## 2086          antitrust                    laws   1
## 2087            antónio                guterres   1
## 2088            anymore                   wrong   1
## 2089                 ap                headline   1
## 2090            apology                  double   1
## 2091         apparently                  didn’t   1
## 2092            appeals                  judges   1
## 2093            applaud                  pfizer   1
## 2094              apple                    cart   1
## 2095              apple                  follow   1
## 2096              apple                  prices   1
## 2097       applications                  plunge   1
## 2098            applied              tremendous   1
## 2099          appointed                   witch   1
## 2100         appointing                   angry   1
## 2101       appointments             ambassadors   1
## 2102         apprentice                 triumph   1
## 2103      appropriately                  called   1
## 2104      appropriately                    late   1
## 2105           approval                 process   1
## 2106            approve                      41   1
## 2107            approve                 boarder   1
## 2108            approve                  border   1
## 2109            approve                hundreds   1
## 2110            approve             legislation   1
## 2111            approve                    mike   1
## 2112            approve                  strong   1
## 2113           approved                     bob   1
## 2114           approved                 dollars   1
## 2115           approved                  senate   1
## 2116           approves                 florida   1
## 2117           approves                  judges   1
## 2118      approximately                       5   1
## 2119              april                    12th   1
## 2120              april                    18th   1
## 2121              april                       2   1
## 2122              april                      28   1
## 2123              april                       6   1
## 2124             arabia                increase   1
## 2125            arabian                 citizen   1
## 2126             aren’t                allowing   1
## 2127             aren’t                answered   1
## 2128             aren’t                 calling   1
## 2129             aren’t                     dem   1
## 2130             aren’t                  giving   1
## 2131             aren’t                 mueller   1
## 2132             aren’t                    true   1
## 2133              arena                 shortly   1
## 2134             aretha                franklin   1
## 2135          argentina                     bob   1
## 2136          argentine               submarine   1
## 2137            arizona                   house   1
## 2138            arizona                 primary   1
## 2139            arizona              signatures   1
## 2140              armed               educators   1
## 2141              armed                  guards   1
## 2142          armistice                     day   1
## 2143               army                  chorus   1
## 2144               army                  master   1
## 2145               army                    navy   1
## 2146               army                     pfc   1
## 2147               army                 warrant   1
## 2148             arrest                  people   1
## 2149            arrived                 heading   1
## 2150            arrived                   spoke   1
## 2151           arriving                tomorrow   1
## 2152                art                training   1
## 2153             arthur                  laffer   1
## 2154            article                       2   1
## 2155              artie                  muller   1
## 2156         artificial                   trade   1
## 2157                asa                   loves   1
## 2158              asian                hispanic   1
## 2159      assassination                 earlier   1
## 2160           assembly                    unga   1
## 2161        assemblyman                     dov   1
## 2162             assist                      24   1
## 2163          assistant                director   1
## 2164      association’s                 history   1
## 2165             assume                  duties   1
## 2166        astonishing                    it’s   1
## 2167        astonishing                    vote   1
## 2168             astros              pittsburgh   1
## 2169            atlanta                     fed   1
## 2170           atlantic                   ocean   1
## 2171           atrocity               increases   1
## 2172             attack                     god   1
## 2173             attack                   idlib   1
## 2174             attack                  killed   1
## 2175             attack                 shocked   1
## 2176            attacks                   trade   1
## 2177             attend                 today’s   1
## 2178          attention                    hand   1
## 2179           attorney                   baker   1
## 2180           attorney               clarified   1
## 2181           attorney                received   1
## 2182         attorney’s                  office   1
## 2183          attorneys                  office   1
## 2184             august                    21st   1
## 2185             august                   break   1
## 2186             august                     job   1
## 2187             august                  recess   1
## 2188             austin                 bombing   1
## 2189         australian                   prime   1
## 2190        authorities                     fbi   1
## 2191          authority                    it’s   1
## 2192      authorization                     act   1
## 2193         authorized               secretary   1
## 2194             autism               awareness   1
## 2195 autismawarenessday           lightitupblue   1
## 2196          automatic                  action   1
## 2197         automobile                barriers   1
## 2198        automobiles                flooding   1
## 2199              avail                    stay   1
## 2200            average                       3   1
## 2201            average                american   1
## 2202            average                earnings   1
## 2203            avoided                 talking   1
## 2204               awan                  debbie   1
## 2205          awareness                     day   1
## 2206              awful                     lot   1
## 2207               awol                 missing   1
## 2208               az08                  strong   1
## 2209               baby                  rigged   1
## 2210          backfires                    dems   1
## 2211             backup                 sources   1
## 2212                bad                    acts   1
## 2213                bad                   blood   1
## 2214                bad                   cruel   1
## 2215                bad                    deal   1
## 2216                bad                   deals   1
## 2217                bad                   don’t   1
## 2218                bad                election   1
## 2219                bad           environmental   1
## 2220                bad                    fake   1
## 2221                bad                    idea   1
## 2222                bad             immigration   1
## 2223                bad              intentions   1
## 2224                bad                    iran   1
## 2225                bad                    joke   1
## 2226                bad             legislation   1
## 2227                bad                   light   1
## 2228                bad                    marc   1
## 2229                bad                    move   1
## 2230                bad                   msnbc   1
## 2231                bad                  photos   1
## 2232                bad                pipeline   1
## 2233                bad                 players   1
## 2234                bad                  policy   1
## 2235                bad                politics   1
## 2236                bad                 ratings   1
## 2237                bad               reporting   1
## 2238                bad                   shape   1
## 2239                bad                   stuff   1
## 2240                bad                terrible   1
## 2241                bad                  terror   1
## 2242                bad                   thugs   1
## 2243                bad                 version   1
## 2244                bad                     wto   1
## 2245              badly                     306   1
## 2246              badly                 beating   1
## 2247              badly                    daca   1
## 2248              badly                 damaged   1
## 2249              badly                    iran   1
## 2250              badly                 mistake   1
## 2251              badly              negotiated   1
## 2252              badly             represented   1
## 2253              badly                reviewed   1
## 2254             bailey                    holt   1
## 2255          balderson                 running   1
## 2256          balderson                    troy   1
## 2257        balderson’s                  recent   1
## 2258          ballistic                missiles   1
## 2259            ballots               massively   1
## 2260                ban                     wow   1
## 2261               bank                 account   1
## 2262               bank                  that’s   1
## 2263             banker                   jamie   1
## 2264             banned             permanently   1
## 2265            banning                    bump   1
## 2266            banning               prominent   1
## 2267             barack                 obama's   1
## 2268             barack                 obama’s   1
## 2269            bargain                basement   1
## 2270         bargaining                position   1
## 2271               barr               fantastic   1
## 2272               barr                     gee   1
## 2273               barr              tremendous   1
## 2274            barrack                   obama   1
## 2275              barre                township   1
## 2276           barriers                  canada   1
## 2277           barriers                    jobs   1
## 2278               bars             enforcement   1
## 2279           basement                  prices   1
## 2280             bashar                      al   1
## 2281              basis                 economy   1
## 2282              beach                counties   1
## 2283              beach                  county   1
## 2284              beach                 florida   1
## 2285              beach                  voting   1
## 2286              beans                    fell   1
## 2287               beat                      17   1
## 2288            beating               forecasts   1
## 2289            beating                    wife   1
## 2290          beautiful                     401   1
## 2291          beautiful               afternoon   1
## 2292          beautiful                   bride   1
## 2293          beautiful                  canada   1
## 2294          beautiful                   clean   1
## 2295          beautiful                     day   1
## 2296          beautiful                   dress   1
## 2297          beautiful                economic   1
## 2298          beautiful                  family   1
## 2299          beautiful              greenbrier   1
## 2300          beautiful                    life   1
## 2301          beautiful                   lives   1
## 2302          beautiful               magarally   1
## 2303          beautiful                     map   1
## 2304          beautiful                 weather   1
## 2305          beautiful                    west   1
## 2306          beautiful                   white   1
## 2307          beautiful                    wife   1
## 2308          beautiful                   words   1
## 2309        beautifully             represented   1
## 2310             bedlam                   chaos   1
## 2311         bedminster                 earlier   1
## 2312              begin                 cutting   1
## 2313              begin                   talks   1
## 2314              begin                 today’s   1
## 2315          beginning                tomorrow   1
## 2316       begrudgingly                  forced   1
## 2317              begun               preparing   1
## 2318              begun             republicans   1
## 2319            behaved                   worse   1
## 2320           behavior               neighbors   1
## 2321             beirut                 lebanon   1
## 2322           belittle               collusion   1
## 2323            beloved                 missing   1
## 2324                ben                 shapiro   1
## 2325                ben                   stein   1
## 2326             berlin               coalition   1
## 2327             bernie             republicans   1
## 2328             bernie                 sanders   1
## 2329                bet                 founder   1
## 2330              bezos                   isn’t   1
## 2331               bias                    i’ve   1
## 2332               bias                   lying   1
## 2333             biased                  agenda   1
## 2334             biased                  emails   1
## 2335             biased                facebook   1
## 2336             biased                   media   1
## 2337             biased               newspaper   1
## 2338             biased                sinclair   1
## 2339              bible                  school   1
## 2340             bigger                    star   1
## 2341            biggest                   dream   1
## 2342            biggest                   enemy   1
## 2343            biggest                   liars   1
## 2344            biggest                   loser   1
## 2345            biggest               opponents   1
## 2346            biggest                 stadium   1
## 2347            biggest                 stories   1
## 2348            biggest                   story   1
## 2349          bilateral               breakfast   1
## 2350          bilateral                    deal   1
## 2351               bill                       1   1
## 2352               bill                   based   1
## 2353               bill                deblasio   1
## 2354               bill                    he’s   1
## 2355               bill                 kristol   1
## 2356               bill                     lee   1
## 2357               bill            negotiations   1
## 2358               bill                    past   1
## 2359               bill                schuette   1
## 2360               bill              supporting   1
## 2361               bill                 tonight   1
## 2362           billings                 montana   1
## 2363            billion                 brought   1
## 2364            billion                    fine   1
## 2365            billion                  payoff   1
## 2366            billion                    pays   1
## 2367            billion                 surplus   1
## 2368            billion                   taxes   1
## 2369            billion                    wall   1
## 2370         biodefense                strategy   1
## 2371         bipartisan               agreement   1
## 2372         bipartisan                    bill   1
## 2373         bipartisan                 meeting   1
## 2374           birthday                 america   1
## 2375           birthday                   vince   1
## 2376                bit             implausible   1
## 2377                bit                   south   1
## 2378             biting               sanctions   1
## 2379              black               community   1
## 2380              black                 knights   1
## 2381              black                    vote   1
## 2382              black                 workers   1
## 2383              blair                   house   1
## 2384              blame                complain   1
## 2385              blame               president   1
## 2386              blame             republicans   1
## 2387              blame               technical   1
## 2388            blaming                 samsung   1
## 2389              blank                    jeff   1
## 2390          blatantly                violated   1
## 2391              blimp                   total   1
## 2392              blind                     eye   1
## 2393              block                     ice   1
## 2394          bloomberg                violated   1
## 2395          blueprint                  pfizer   1
## 2396              board                   seats   1
## 2397            board's                   index   1
## 2398               boat                accident   1
## 2399                bob                   hugin   1
## 2400                bob                    iger   1
## 2401                bob                   kraft   1
## 2402                bob              lighthizer   1
## 2403                bob             stefanowski   1
## 2404                bob                woodward   1
## 2405              bobby                      jr   1
## 2406              bogus                     dna   1
## 2407               bold                 actions   1
## 2408               bold                    step   1
## 2409               bold                 victory   1
## 2410            bolster                 farmers   1
## 2411             bolton                   larry   1
## 2412               bomb                   maker   1
## 2413               bomb                packages   1
## 2414               bomb                  scares   1
## 2415               bomb                   stuff   1
## 2416             bombed                couldn’t   1
## 2417            bombing                 suspect   1
## 2418               bond                  remain   1
## 2419              bonds                    grow   1
## 2420              bonus               shootings   1
## 2421            bonuses                     pay   1
## 2422               book                  aren’t   1
## 2423               book                   bring   1
## 2424               book                  called   1
## 2425               book                 fiction   1
## 2426               book                    ship   1
## 2427               book                 totally   1
## 2428              books                articles   1
## 2429              books                  coming   1
## 2430               boom                crashing   1
## 2431               boom                  record   1
## 2432            booming                 america   1
## 2433            booming                 economy   1
## 2434            booming             investments   1
## 2435           boosting               america’s   1
## 2436           boosting              confidence   1
## 2437              booth                tomorrow   1
## 2438             border                     2nd   1
## 2439             border                  agents   1
## 2440             border                   chuck   1
## 2441             border                 illegal   1
## 2442             border               illegally   1
## 2443             border             immigration   1
## 2444             border               including   1
## 2445             border               loopholes   1
## 2446             border              mainstream   1
## 2447             border                  people   1
## 2448             border             permanently   1
## 2449             border                    rest   1
## 2450             border                  safety   1
## 2451             border                     tax   1
## 2452             border                 walking   1
## 2453             border               yesterday   1
## 2454            borders                     2nd   1
## 2455            borders                  agenda   1
## 2456            borders                   drugs   1
## 2457            borders                   fight   1
## 2458            borders              healthcare   1
## 2459            borders                    isis   1
## 2460            borders              judgeships   1
## 2461            borders                military   1
## 2462            borders                security   1
## 2463            borders                shutdown   1
## 2464            borders                     ted   1
## 2465            borders                   tough   1
## 2466            borders                    troy   1
## 2467            borders                    vote   1
## 2468            borders                    weak   1
## 2469             boring                 article   1
## 2470             boring                    bust   1
## 2471             boring                   story   1
## 2472             boring                  untrue   1
## 2473               boss                  killer   1
## 2474             bosses                    john   1
## 2475             boston                   globe   1
## 2476              botch                    jobs   1
## 2477               bowl            presentation   1
## 2478               bowl                 victory   1
## 2479                box                    maga   1
## 2480             boxing                champion   1
## 2481             boxing                   match   1
## 2482                boy                  amazon   1
## 2483                boy                 causing   1
## 2484                boy                   peter   1
## 2485               brad           raffensperger   1
## 2486               brad                    todd   1
## 2487             branch                employee   1
## 2488            brandon                  straka   1
## 2489              brave               americans   1
## 2490              brave                citizens   1
## 2491              brave            firefighters   1
## 2492              brave                 missing   1
## 2493              brave                  people   1
## 2494              brave                 service   1
## 2495              brave                 teacher   1
## 2496              brave                  troops   1
## 2497             braved                   enemy   1
## 2498            bravely                swapping   1
## 2499            bravery              sacrifices   1
## 2500            bravery                   shown   1
## 2501            bravest                  people   1
## 2502             brazil                    jair   1
## 2503             breach                 richard   1
## 2504           breeding                 concept   1
## 2505             breeds                horrible   1
## 2506             brenda                  snipes   1
## 2507            brennan                 clapper   1
## 2508            brennan                   comey   1
## 2509            brennan                 started   1
## 2510          brennan’s                  recent   1
## 2511          brennan’s                security   1
## 2512          brennan’s               statement   1
## 2513              brian                  france   1
## 2514              brian                    ross   1
## 2515            bribery                 statute   1
## 2516              bride               yesterday   1
## 2517             bridge                collapse   1
## 2518            bridges                 tunnels   1
## 2519           briefing                      16   1
## 2520           briefing                politics   1
## 2521             bright                  future   1
## 2522           brighter                  future   1
## 2523           brigitte                  macron   1
## 2524          brilliant              courageous   1
## 2525          brilliant                     fox   1
## 2526          brilliant                     guy   1
## 2527          brilliant                  lawyer   1
## 2528          brilliant               potential   1
## 2529          brilliant              successful   1
## 2530        brilliantly         congratulations   1
## 2531        brilliantly                   cover   1
## 2532              bring                    jobs   1
## 2533              bring                    main   1
## 2534              bring                 massive   1
## 2535              bring                   peace   1
## 2536           bringing                   black   1
## 2537           bringing              businesses   1
## 2538           bringing                   coach   1
## 2539           bringing                    jobs   1
## 2540           bringing                   steel   1
## 2541             brings                 massive   1
## 2542              britt               slabinski   1
## 2543          broadcast                  merger   1
## 2544              broke                  ground   1
## 2545             broken                 massive   1
## 2546             brooks                  koepka   1
## 2547            brother                   chris   1
## 2548            brother                     lou   1
## 2549            brought                  rigged   1
## 2550            brought                   texas   1
## 2551            broward                  effect   1
## 2552              brown               announced   1
## 2553              brown                pardoned   1
## 2554            brown’s                 charade   1
## 2555              bruce                   nelly   1
## 2556              bruno              california   1
## 2557            brunson                released   1
## 2558              bryan                   steil   1
## 2559         brzezinski                  stated   1
## 2560          buddhists                   sikhs   1
## 2561             budget               agreement   1
## 2562             buenos                   aires   1
## 2563              build                    fast   1
## 2564              build                    hire   1
## 2565           building                 firemen   1
## 2566             builds                     bob   1
## 2567              built                building   1
## 2568              built                  plants   1
## 2569              built                   walls   1
## 2570               bull                     run   1
## 2571            bullets                 whizzed   1
## 2572               buoy              candidates   1
## 2573            burdens                american   1
## 2574         burdensome                     red   1
## 2575             burial                 grounds   1
## 2576                bus               inspector   1
## 2577               bush                    doug   1
## 2578               bush                 dynasty   1
## 2579               bush                     led   1
## 2580           business               expansion   1
## 2581           business                    fast   1
## 2582           business            fundamentals   1
## 2583           business              investment   1
## 2584           business                    jobs   1
## 2585           business                 leaders   1
## 2586           business                  owners   1
## 2587           business            relationship   1
## 2588           business         representatives   1
## 2589           business                    week   1
## 2590               busy                     day   1
## 2591                buy                 massive   1
## 2592             buying            agricultural   1
## 2593             buying                soybeans   1
## 2594             buying                     u.s   1
## 2595             buying                    vast   1
## 2596                 ca                 talking   1
## 2597              cable             association   1
## 2598              cable                    news   1
## 2599              cages                 wrapped   1
## 2600         california                 finally   1
## 2601         california                    fire   1
## 2602         california                   fires   1
## 2603         california                governor   1
## 2604         california           gubernatorial   1
## 2605         california              helicopter   1
## 2606         california                 highway   1
## 2607         california                     law   1
## 2608         california                    paul   1
## 2609         california                   soooo   1
## 2610         california                   south   1
## 2611         california                     win   1
## 2612       california's               dangerous   1
## 2613       california's               sanctuary   1
## 2614       california’s               sanctuary   1
## 2615               call                  wished   1
## 2616             called                  advice   1
## 2617             called              birthright   1
## 2618             called              constantly   1
## 2619             called               endlessly   1
## 2620             called                 experts   1
## 2621             called                fighting   1
## 2622             called                    fool   1
## 2623             called                    free   1
## 2624             called                   leaks   1
## 2625             called                    left   1
## 2626             called                 mueller   1
## 2627             called                opponent   1
## 2628             called            presidential   1
## 2629             called                   probe   1
## 2630             called                 pushing   1
## 2631             called                 russian   1
## 2632             called                  senior   1
## 2633             called                   trade   1
## 2634             called                   trump   1
## 2635             called                 valerie   1
## 2636            calling              immigrants   1
## 2637            calling                    jeff   1
## 2638              calls                woodward   1
## 2639            cameras                 running   1
## 2640           campaign                    aide   1
## 2641           campaign                 charges   1
## 2642           campaign               collusion   1
## 2643           campaign            contribution   1
## 2644           campaign           contributions   1
## 2645           campaign                  dating   1
## 2646           campaign                document   1
## 2647           campaign                 dollars   1
## 2648           campaign               financing   1
## 2649           campaign                 foreign   1
## 2650           campaign                    hoax   1
## 2651           campaign                 illegal   1
## 2652           campaign                   issue   1
## 2653           campaign                   judge   1
## 2654           campaign                     met   1
## 2655           campaign                  people   1
## 2656           campaign                 rallies   1
## 2657           campaign                  russia   1
## 2658           campaign                 russian   1
## 2659           campaign                  speech   1
## 2660           campaign                 spygate   1
## 2661           campaign            surveillance   1
## 2662           campaign                   trail   1
## 2663           campaign                  wasn’t   1
## 2664           campaign                   witch   1
## 2665           campaign                 workers   1
## 2666           campaign                  you’ve   1
## 2667        campaigning                 tonight   1
## 2668          campaigns                  didn’t   1
## 2669          campaigns            presidential   1
## 2670             campos                   duffy   1
## 2671              can’t                    beat   1
## 2672              can’t                  define   1
## 2673              can’t                 imagine   1
## 2674              can’t                overcome   1
## 2675              can’t                properly   1
## 2676              can’t                  secure   1
## 2677              can’t                   stand   1
## 2678             canada                   acted   1
## 2679             canada               agreement   1
## 2680             canada                   china   1
## 2681             canada                conclude   1
## 2682             canada               informing   1
## 2683             canada                  mexico   1
## 2684             canada                   nafta   1
## 2685             canada                   prime   1
## 2686             canada                   prior   1
## 2687             canada                 release   1
## 2688            candace                   owens   1
## 2689          candidate                       1   1
## 2690          candidate                    hurt   1
## 2691          candidate                 michael   1
## 2692          candidate                   trump   1
## 2693         candidates                nicholas   1
## 2694         candidates                  voters   1
## 2695           canopies                   doors   1
## 2696         capitalist                    code   1
## 2697         capitalist                comeback   1
## 2698            capitol                    hill   1
## 2699             capone               legendary   1
## 2700           captured                   osama   1
## 2701                car                accident   1
## 2702                car              executives   1
## 2703                car                industry   1
## 2704            caralle              washington   1
## 2705            caravan              turnaround   1
## 2706           caravans                  coming   1
## 2707               care                 putting   1
## 2708             career             threatening   1
## 2709              cargo                   plane   1
## 2710              carol                  miller   1
## 2711           carolina                   henry   1
## 2712           carolina               including   1
## 2713           carolina                   loves   1
## 2714           carolina                 victory   1
## 2715              carry                 subject   1
## 2716              casey                     lou   1
## 2717                cat                       3   1
## 2718       catastrophic                     god   1
## 2719             caught                  called   1
## 2720             caught                    cold   1
## 2721             caught                 fudging   1
## 2722             caught                   lying   1
## 2723             caught                 minimum   1
## 2724             caught                     red   1
## 2725             caused                 traffic   1
## 2726            causing                   crime   1
## 2727            causing              tremendous   1
## 2728              caved                 gambled   1
## 2729              cedar                  rapids   1
## 2730               cede                 nuclear   1
## 2731             ceejay                 metcalf   1
## 2732          celebrate                   labor   1
## 2733        celebrating                    70th   1
## 2734        celebrating                    rosh   1
## 2735        celebratory                military   1
## 2736               cell                   phone   1
## 2737          cellphone                   usage   1
## 2738         cemeteries            battlefields   1
## 2739         centennial           commemoration   1
## 2740             center                    hall   1
## 2741             center               president   1
## 2742             center                 reports   1
## 2743            century                   merit   1
## 2744                ceo                    mary   1
## 2745                ceo                   raves   1
## 2746           chaffetz           appropriately   1
## 2747              chain                 lottery   1
## 2748              chair                   ronna   1
## 2749            chamber                    lies   1
## 2750           champion                 alabama   1
## 2751           champion                 houston   1
## 2752           champion                    jack   1
## 2753       championship                    alex   1
## 2754       championship                   teams   1
## 2755         chancellor                  angela   1
## 2756             change                    fast   1
## 2757             change                    laws   1
## 2758             change                   libel   1
## 2759              chaos                 doesn’t   1
## 2760              chaos                  injury   1
## 2761              chaos             republicans   1
## 2762         characters                 running   1
## 2763            charged                 conduct   1
## 2764            charges                     275   1
## 2765            charges                    deal   1
## 2766            charges               unrelated   1
## 2767           charging                   major   1
## 2768           charging                 massive   1
## 2769            charles                    koch   1
## 2770            charles                   payne   1
## 2771         charleston                   civic   1
## 2772         charlevoix                  canada   1
## 2773            charlie               gasparino   1
## 2774          charlotte                   north   1
## 2775        chattanooga               tennessee   1
## 2776            cheatin                   obama   1
## 2777              cheer                    vote   1
## 2778           chemical                  attack   1
## 2779          chemistry                remember   1
## 2780          cherished                  dollar   1
## 2781            chicago                    cubs   1
## 2782            chicago                  police   1
## 2783            chicken                     tax   1
## 2784              chief                     law   1
## 2785              chief                lobbyist   1
## 2786              chief                   scott   1
## 2787              chief                 special   1
## 2788            chief’s                  trophy   1
## 2789              child              separation   1
## 2790              child              seperation   1
## 2791              child                 teacher   1
## 2792           children                  10,000   1
## 2793           children                 brought   1
## 2794           children                   enter   1
## 2795           children           grandchildren   1
## 2796              china                    adds   1
## 2797              china                barriers   1
## 2798              china                     bet   1
## 2799              china               continues   1
## 2800              china                  cracks   1
## 2801              china                  hacked   1
## 2802              china               including   1
## 2803              china                    iran   1
## 2804              china                likewise   1
## 2805              china                     liu   1
## 2806              china                    lost   1
## 2807              china                  market   1
## 2808              china              officially   1
## 2809              china                   sells   1
## 2810              china                   start   1
## 2811              china                   talks   1
## 2812              china                   trade   1
## 2813              china                   watch   1
## 2814            china’s                 demands   1
## 2815            chinese                    glad   1
## 2816            chinese              government   1
## 2817            chinese                 leaders   1
## 2818            chinese               officials   1
## 2819            chinese               president   1
## 2820            chinese                 product   1
## 2821            chinese                   trade   1
## 2822             choice                 mission   1
## 2823             choice                  passed   1
## 2824             choice                 program   1
## 2825             choked                   badly   1
## 2826             choose                  wisely   1
## 2827             chorus                honoring   1
## 2828             chosen         congratulations   1
## 2829             chosen                 speaker   1
## 2830            christi                craddick   1
## 2831          christian                  family   1
## 2832          christian                 husband   1
## 2833          christian                  leader   1
## 2834          christian                  pastor   1
## 2835          christmas             decorations   1
## 2836          christmas                  season   1
## 2837        christopher              columbus’s   1
## 2838        christopher                steele’s   1
## 2839        christopher                    wray   1
## 2840           chrysler                  moving   1
## 2841              chuck                   nancy   1
## 2842              chuck                 they’ve   1
## 2843                cio             represented   1
## 2844             circle                   chris   1
## 2845               cite                 sources   1
## 2846             cities                     bad   1
## 2847             cities                released   1
## 2848             cities                 started   1
## 2849           citizens             permanently   1
## 2850               city                 bombing   1
## 2851               city                maryland   1
## 2852               city                missouri   1
## 2853              civic                  center   1
## 2854              civil                   basis   1
## 2855              civil                     war   1
## 2856           civilian                   honor   1
## 2857             claims                    fell   1
## 2858             claims                 running   1
## 2859             claire                   voted   1
## 2860            clapper                    adam   1
## 2861            clapper                    lied   1
## 2862            clapper                provided   1
## 2863            clapper                  worlds   1
## 2864           clarence                  thomas   1
## 2865              class                  income   1
## 2866            classic                  salute   1
## 2867         classified               documents   1
## 2868             claude                 juncker   1
## 2869            clauses                 prevent   1
## 2870              clean                   water   1
## 2871           cleanest                     air   1
## 2872           cleanest                 product   1
## 2873            cleanup              rebuilding   1
## 2874          clearance                 dennard   1
## 2875          clearance                    it’s   1
## 2876         clearances                 revoked   1
## 2877            clemson                national   1
## 2878          cleveland                    ohio   1
## 2879             client                 totally   1
## 2880           clifford                 daniels   1
## 2881           climbers                 anymore   1
## 2882            clinton                 dynasty   1
## 2883            clinton                   email   1
## 2884            clinton                famously   1
## 2885            clinton                    it’s   1
## 2886            clinton                    lost   1
## 2887            clinton                   lynch   1
## 2888            clinton                    paid   1
## 2889            clinton                  people   1
## 2890            clinton                    sham   1
## 2891            clinton                    team   1
## 2892          clinton’s             criminality   1
## 2893          clinton’s             deplorables   1
## 2894          clinton’s                  emails   1
## 2895          clinton’s               political   1
## 2896          clinton’s                 private   1
## 2897           clintons                  fusion   1
## 2898              close                  friend   1
## 2899              close               loopholes   1
## 2900             closed               committee   1
## 2901             closed                   doors   1
## 2902             closed                 markets   1
## 2903            closely            coordinating   1
## 2904            closely                 examine   1
## 2905            closely                involved   1
## 2906            closely              monitoring   1
## 2907            closely                   study   1
## 2908             closer            relationship   1
## 2909            closing                  plants   1
## 2910            closing                  stores   1
## 2911               cmte                   chair   1
## 2912                cnn                  agrees   1
## 2913                cnn                 doesn’t   1
## 2914                cnn                 foxnews   1
## 2915                cnn                   msnbc   1
## 2916                cnn                     nbc   1
## 2917                cnn                  report   1
## 2918                cnn                     sad   1
## 2919              cnn’s             credibility   1
## 2920              cnn’s                 ratings   1
## 2921               coal                    mine   1
## 2922               coal                   mines   1
## 2923          coalition                   crime   1
## 2924              cohen                   plead   1
## 2925            cohen’s                attorney   1
## 2926               cold                   blast   1
## 2927               cold               criminals   1
## 2928               cold                    feet   1
## 2929               cold                     war   1
## 2930            coldest           thanksgivings   1
## 2931            coldest                 weather   1
## 2932            college                educated   1
## 2933            college                   epoll   1
## 2934            collins             immigration   1
## 2935           colluded             coordinated   1
## 2936          collusion                   bruce   1
## 2937          collusion            coordination   1
## 2938          collusion                    hoax   1
## 2939          collusion                illusion   1
## 2940          collusion                    it’s   1
## 2941          collusion                 mueller   1
## 2942          collusion                 richard   1
## 2943          collusion                  rigged   1
## 2944          collusion                  tester   1
## 2945          collusion                  that’s   1
## 2946          collusion                   witch   1
## 2947              color                 amazing   1
## 2948           columbia                     law   1
## 2949           columbia                missouri   1
## 2950           columbia                   south   1
## 2951         columbus’s                  spirit   1
## 2952             combat                  unfair   1
## 2953             combat                     vet   1
## 2954         combatants                 pouring   1
## 2955            comcast               routinely   1
## 2956           comedian                michelle   1
## 2957           comedian                 totally   1
## 2958              comey                 brennan   1
## 2959              comey                   can’t   1
## 2960              comey              classified   1
## 2961              comey                 drafted   1
## 2962              comey               illegally   1
## 2963              comey                  letter   1
## 2964              comey                     lie   1
## 2965              comey                    lies   1
## 2966              comey                    mark   1
## 2967              comey                numerous   1
## 2968              comey                  shared   1
## 2969              comey                  throws   1
## 2970              comey                    told   1
## 2971              comey                  warner   1
## 2972            comey’s                   badly   1
## 2973            comey’s                   memos   1
## 2974            comey’s                  skinny   1
## 2975            comey’s               testimony   1
## 2976             coming                    arms   1
## 2977             coming                   don’t   1
## 2978             coming                     due   1
## 2979             coming                 forward   1
## 2980             coming                    home   1
## 2981             coming               illegally   1
## 2982             coming                    nice   1
## 2983             coming                   north   1
## 2984             coming             republicans   1
## 2985            command                position   1
## 2986       commencement                 address   1
## 2987       commencement                 speaker   1
## 2988            comment                  period   1
## 2989           commerce              department   1
## 2990           commerce              engagement   1
## 2991           commerce                  wilbur   1
## 2992         commission               president   1
## 2993       commissioner                 christi   1
## 2994             commit                   david   1
## 2995          committee                chairman   1
## 2996          committee                   found   1
## 2997          committee           investigation   1
## 2998          committee                 refused   1
## 2999          committee                  report   1
## 3000          committee                   rules   1
## 3001          committee                stalling   1
## 3002          committee                   votes   1
## 3003             common              challenges   1
## 3004             common                   sense   1
## 3005        communities                 putting   1
## 3006        communities                    safe   1
## 3007        communities                   safer   1
## 3008          community              assessment   1
## 3009          community                 leaders   1
## 3010          companies                  coming   1
## 3011          companies                continue   1
## 3012          companies                   don’t   1
## 3013          companies               expanding   1
## 3014          companies                  google   1
## 3015          companies                    jobs   1
## 3016          companies                 pouring   1
## 3017            company                    buys   1
## 3018          company’s                lobbying   1
## 3019         comparison                    cost   1
## 3020         comparison              viewership   1
## 3021         compassion                   grief   1
## 3022          competing                campaign   1
## 3023        competitive                    edge   1
## 3024        competitive                    race   1
## 3025        competitive              republican   1
## 3026           complete             elimination   1
## 3027           complete             endrosement   1
## 3028           complete             fabrication   1
## 3029           complete           investigation   1
## 3030           complete                sentence   1
## 3031           complete                 support   1
## 3032           complete                   witch   1
## 3033          completed                   level   1
## 3034         completely            inaccessible   1
## 3035         completely                   ready   1
## 3036            complex                     job   1
## 3037        complicated                   legal   1
## 3038      comprehensive              background   1
## 3039      comprehensive                    deal   1
## 3040      comprehensive             immigration   1
## 3041       compromising             information   1
## 3042       compromising                material   1
## 3043        comptroller                   glenn   1
## 3044                con                    game   1
## 3045            conceal                   carry   1
## 3046          concealed                    guns   1
## 3047           conceded                election   1
## 3048            concept                   jerry   1
## 3049           concerns                  people   1
## 3050         conclusive                 answers   1
## 3051         conclusive              republican   1
## 3052         conclusive                     win   1
## 3053         conditions               democrats   1
## 3054         conditions                   mitch   1
## 3055            conduct                 altered   1
## 3056         conference              explaining   1
## 3057         conference             performance   1
## 3058         conference                 shortly   1
## 3059         confidence                   index   1
## 3060         confidence                    pops   1
## 3061         confidence                    rose   1
## 3062       confidential               informant   1
## 3063       confidential             information   1
## 3064       confirmation                 hearing   1
## 3065          confirmed                      68   1
## 3066          confirmed                  deputy   1
## 3067          confirmed                     due   1
## 3068          confirmed                 special   1
## 3069         confirming                 supreme   1
## 3070         conflicted              prosecutor   1
## 3071         conflicted                  robert   1
## 3072         conflicted                   witch   1
## 3073          conflicts                  mccabe   1
## 3074       congratulate                 heather   1
## 3075    congratulations                rolltide   1
## 3076    congratulations                   u.s.a   1
## 3077           congress                     fix   1
## 3078           congress                    fund   1
## 3079           congress                   house   1
## 3080           congress                    jail   1
## 3081           congress                  refuse   1
## 3082           congress                  secure   1
## 3083           congress                  strong   1
## 3084           congress                    wins   1
## 3085           congress                     wow   1
## 3086      congressional                  ballot   1
## 3087      congressional               candidate   1
## 3088      congressional                    dems   1
## 3089      congressional              leadership   1
## 3090      congressional                     map   1
## 3091      congressional                   medal   1
## 3092      congressional                   races   1
## 3093      congressional                    seat   1
## 3094      congressional                 special   1
## 3095      congressional                subpoena   1
## 3096      congressional                    term   1
## 3097        congressman              _balderson   1
## 3098        congressman                  bishop   1
## 3099        congressman                     dan   1
## 3100        congressman                   devin   1
## 3101        congressman                    erik   1
## 3102        congressman                     joe   1
## 3103        congressman                    john   1
## 3104        congressman                     lee   1
## 3105        congressman                     lou   1
## 3106        congressman                    maga   1
## 3107        congressman                    matt   1
## 3108        congressman                    neal   1
## 3109        congressman                   randy   1
## 3110        congressman                  schiff   1
## 3111        congressman                     ted   1
## 3112        congressmen                   women   1
## 3113      congresswoman                  martha   1
## 3114          connected                democrat   1
## 3115          connected                 sources   1
## 3116        connecticut              politician   1
## 3117            conquer                    hate   1
## 3118      consequential               president   1
## 3119       conservative                    fair   1
## 3120       conservative                  judges   1
## 3121       conservative                   voice   1
## 3122       conservative                  voices   1
## 3123       considerable                     aid   1
## 3124     considerations                    jeff   1
## 3125         conspiracy                  caught   1
## 3126         conspiracy                   judge   1
## 3127         constantly                fighting   1
## 3128         constantly                   likes   1
## 3129         constantly                    miss   1
## 3130         constantly                   quote   1
## 3131         constantly                 quoting   1
## 3132         constantly              requesting   1
## 3133         constantly                   wrong   1
## 3134       constitution                     day   1
## 3135          consulate                   event   1
## 3136           consumer                 board's   1
## 3137           consumer             environment   1
## 3138           consumer              protection   1
## 3139           consumer               sentiment   1
## 3140           consumer                spending   1
## 3141            contact                handover   1
## 3142          contained              classified   1
## 3143        contentious                business   1
## 3144           continue                allowing   1
## 3145           continue                building   1
## 3146           continue               democrats   1
## 3147          continues                  deadly   1
## 3148          continues             republicans   1
## 3149       continuously                   fails   1
## 3150           contrary                 quoting   1
## 3151      contributions                  played   1
## 3152      contributions       taxcutsandjobsact   1
## 3153            control                    band   1
## 3154            control                    kiss   1
## 3155            control             legislation   1
## 3156            control              prosecutor   1
## 3157         controlled                democrat   1
## 3158         controlled               substance   1
## 3159       conversation                     gun   1
## 3160        convictions                    alan   1
## 3161        convictions                   house   1
## 3162               cool                  talked   1
## 3163        cooperative             disciplined   1
## 3164        coordinated                  effort   1
## 3165                cop                   stuff   1
## 3166              corey                 stewart   1
## 3167              corps                     air   1
## 3168              corps                 veteran   1
## 3169            correct                 america   1
## 3170            correct                   don’t   1
## 3171            corrupt                 clinton   1
## 3172            corrupt                     djt   1
## 3173            corrupt                 dossier   1
## 3174            corrupt               estimated   1
## 3175            corrupt             governments   1
## 3176            corrupt                  leader   1
## 3177            corrupt                   media   1
## 3178            corrupt                  people   1
## 3179            corrupt                   scary   1
## 3180            corrupt                 they’ve   1
## 3181            corrupt                     tom   1
## 3182         corruption                    call   1
## 3183         corruption                 scandal   1
## 3184         corruption                     wow   1
## 3185               cost                 cutting   1
## 3186               cost                   don’t   1
## 3187               cost                fighting   1
## 3188               cost               increases   1
## 3189             costly                    anti   1
## 3190             costly                  forest   1
## 3191             costly                   trial   1
## 3192              costs                  coming   1
## 3193            cosumer              confidence   1
## 3194           couldn’t                    care   1
## 3195           couldn’t                  create   1
## 3196           couldn’t                     fly   1
## 3197           couldn’t                  happen   1
## 3198           couldn’t                    hold   1
## 3199           couldn’t                remember   1
## 3200            councel                     don   1
## 3201            council               appointed   1
## 3202            council                 meeting   1
## 3203            council               president   1
## 3204            counsel               appointed   1
## 3205            counsel                 justice   1
## 3206            counsel                 there’s   1
## 3207            counsel              whitewater   1
## 3208            counter                  report   1
## 3209            counter               terrorism   1
## 3210            counter                  unfair   1
## 3211          countries                   agree   1
## 3212          countries                 history   1
## 3213          countries                military   1
## 3214          countries               pollution   1
## 3215          countries                     rip   1
## 3216          countries                  solves   1
## 3217          countries                  tariff   1
## 3218          countries                thanking   1
## 3219          countries                   trade   1
## 3220            country                      79   1
## 3221            country                    auto   1
## 3222            country                   based   1
## 3223            country                billions   1
## 3224            country              bipartisan   1
## 3225            country                  border   1
## 3226            country                  caused   1
## 3227            country               companies   1
## 3228            country         congratulations   1
## 3229            country                congress   1
## 3230            country                    date   1
## 3231            country                    dems   1
## 3232            country                     due   1
## 3233            country                 economy   1
## 3234            country                    fake   1
## 3235            country                flourish   1
## 3236            country             fortunately   1
## 3237            country                     i’m   1
## 3238            country                  killed   1
## 3239            country                 leaders   1
## 3240            country                 legally   1
## 3241            country                  losses   1
## 3242            country                    maga   1
## 3243            country                      ms   1
## 3244            country                  people   1
## 3245            country                  record   1
## 3246            country                  remove   1
## 3247            country               returning   1
## 3248            country               reversing   1
## 3249            country                  richer   1
## 3250            country                     tax   1
## 3251            country                   taxes   1
## 3252            country                 tearing   1
## 3253            country               unchecked   1
## 3254            country                     usa   1
## 3255            country                    vote   1
## 3256            country                   voted   1
## 3257            country                    wake   1
## 3258            country                   won’t   1
## 3259          country’s                 biggest   1
## 3260          country’s                finances   1
## 3261          country’s                    flag   1
## 3262          country’s                northern   1
## 3263             counts                     ten   1
## 3264             county               defending   1
## 3265             county                   north   1
## 3266            courage                   award   1
## 3267            courage                  genius   1
## 3268            courage                 praying   1
## 3269         courageous                families   1
## 3270         courageous                     law   1
## 3271         courageous                 masters   1
## 3272         courageous               patriotic   1
## 3273         courageous                students   1
## 3274              court                    asap   1
## 3275              court                   brett   1
## 3276              court                 heading   1
## 3277              court                   judge   1
## 3278              court            misleadingly   1
## 3279              court                    pick   1
## 3280              court                   picks   1
## 3281              court                   rules   1
## 3282              court                  ruling   1
## 3283              court                  scotus   1
## 3284              court                    seat   1
## 3285              court                 there’s   1
## 3286              court                 upholds   1
## 3287              court                     win   1
## 3288             courts                   can’t   1
## 3289             courts                couldn’t   1
## 3290             courts                   witch   1
## 3291              cover               correctly   1
## 3292              cover                   total   1
## 3293           coverage                    hour   1
## 3294            covered                    live   1
## 3295            cowards                   won’t   1
## 3296               cpac                   straw   1
## 3297                 cr                 illegal   1
## 3298           cradling               sanctuary   1
## 3299              craft                  jumped   1
## 3300             cramer                  easily   1
## 3301             crazed                  crying   1
## 3302             crazed                    mika   1
## 3303             crazed               stumbling   1
## 3304              crazy                    brad   1
## 3305              crazy                    dems   1
## 3306              crazy                     jim   1
## 3307              crazy                     joe   1
## 3308              crazy                   phony   1
## 3309              crazy                   rants   1
## 3310              crazy                   trade   1
## 3311             create                     600   1
## 3312             create                 discord   1
## 3313             create                     ill   1
## 3314             create                    jobs   1
## 3315             create                   peace   1
## 3316            created                     u.s   1
## 3317           creating               thousands   1
## 3318        credibility                   house   1
## 3319             credit                     gop   1
## 3320             credit                   obama   1
## 3321              creep                thinking   1
## 3322              crime                     bob   1
## 3323              crime              california   1
## 3324              crime                  called   1
## 3325              crime                cradling   1
## 3326              crime                democrat   1
## 3327              crime                   drugs   1
## 3328              crime                    easy   1
## 3329              crime                  exists   1
## 3330              crime                 fighter   1
## 3331              crime                  finish   1
## 3332              crime                  highly   1
## 3333              crime                     ice   1
## 3334              crime                 illegal   1
## 3335              crime                infested   1
## 3336              crime                  loving   1
## 3337              crime                military   1
## 3338              crime                   nancy   1
## 3339              crime               president   1
## 3340              crime              prevention   1
## 3341              crime             republicans   1
## 3342              crime                  ridden   1
## 3343              crime                   sadly   1
## 3344              crime                   sound   1
## 3345              crime                   stuff   1
## 3346              crime                  taking   1
## 3347              crime                     tax   1
## 3348              crime                     win   1
## 3349             crimea                   syria   1
## 3350             crimes               committed   1
## 3351             crimes                 include   1
## 3352           criminal                activity   1
## 3353           criminal                    deep   1
## 3354           criminal               elelments   1
## 3355           criminal               penalties   1
## 3356           criminal                referral   1
## 3357         criminally            investigated   1
## 3358          criminals                 doesn’t   1
## 3359          criminals             traffickers   1
## 3360            crimson                    tide   1
## 3361          crippling               loopholes   1
## 3362           critical                    step   1
## 3363          criticize                sinclair   1
## 3364          criticize                   trade   1
## 3365         criticized                     nbc   1
## 3366         criticized               secretary   1
## 3367            critics                   crazy   1
## 3368            crooked                campaign   1
## 3369          crooked’s                  office   1
## 3370              crowd                expected   1
## 3371              crowd                  inside   1
## 3372              crowd                   rally   1
## 3373              crowd                  spirit   1
## 3374             crowds                  inside   1
## 3375            crucial                   issue   1
## 3376              cruel             legislative   1
## 3377               cruz                      lt   1
## 3378             crying                 lowlife   1
## 3379               cubs                 houston   1
## 3380            cuomo's               statement   1
## 3381                cup            additionally   1
## 3382                cup            championship   1
## 3383                cup         congratulations   1
## 3384                cup                  series   1
## 3385                cup              tournament   1
## 3386           currency                declares   1
## 3387           currency             devaluation   1
## 3388           currency            manipulation   1
## 3389            current              commitment   1
## 3390            current                 illegal   1
## 3391            current                   spate   1
## 3392          customary                 display   1
## 3393                cut          15,000,000,000   1
## 3394                cut              burdensome   1
## 3395                cut                 package   1
## 3396                cut                   rates   1
## 3397                cut                   taxes   1
## 3398               cute                   don’t   1
## 3399               cuts                    2018   1
## 3400               cuts                 america   1
## 3401               cuts                    huge   1
## 3402               cuts                 judge’s   1
## 3403               cuts                judicial   1
## 3404               cuts                   loves   1
## 3405               cuts                   raise   1
## 3406               cuts                    troy   1
## 3407               cuts                  unlike   1
## 3408               cuts                    vote   1
## 3409            cutting                    edge   1
## 3410            cutting                     oil   1
## 3411            cutting                    regs   1
## 3412              cyber                 attacks   1
## 3413              cycle               companies   1
## 3414                d.c         congratulations   1
## 3415                d.c                politics   1
## 3416                d.c                  poorly   1
## 3417                d.c              protesters   1
## 3418                d.c                   tough   1
## 3419                d.c                    vote   1
## 3420                d’s                  oppose   1
## 3421               daca               bandwagon   1
## 3422               daca           beneficiaries   1
## 3423               daca                    deal   1
## 3424               daca                     fix   1
## 3425               daca                   nancy   1
## 3426               daca               president   1
## 3427               daca                  puzzle   1
## 3428               daca                     r’s   1
## 3429                dad                   fixed   1
## 3430             daines                  family   1
## 3431              dairy                 farmers   1
## 3432              dairy                 hurting   1
## 3433              dairy                products   1
## 3434           dakota’s                     rep   1
## 3435             damage                   trump   1
## 3436                dan                 donovan   1
## 3437                dan               henninger   1
## 3438                dan                  nevins   1
## 3439                dan                 patrick   1
## 3440             danger                 despair   1
## 3441             danger                   nancy   1
## 3442          dangerous               addictive   1
## 3443          dangerous                caravans   1
## 3444          dangerous                 country   1
## 3445          dangerous                disgrace   1
## 3446          dangerous                  google   1
## 3447          dangerous                    heed   1
## 3448          dangerous                 lottery   1
## 3449          dangerous                  people   1
## 3450          dangerous                  period   1
## 3451          dangerous                policies   1
## 3452          dangerous               sequester   1
## 3453          dangerous                    sick   1
## 3454          dangerous               situation   1
## 3455          dangerous                   times   1
## 3456          dangerous              tremendous   1
## 3457          dangerous                    trip   1
## 3458          dangerous                 violent   1
## 3459          dangerous                 weapons   1
## 3460            danials                 lawsuit   1
## 3461              danny                   loves   1
## 3462              danny                o’connor   1
## 3463           darkened                  allies   1
## 3464            darrell                 hammond   1
## 3465            darrell                   scott   1
## 3466               date                    june   1
## 3467               date                    time   1
## 3468           daughter                 annie’s   1
## 3469               dave                  hughes   1
## 3470              david                   asman   1
## 3471              david                   brody   1
## 3472              david                     ige   1
## 3473              david                   lynch   1
## 3474              david                  perdue   1
## 3475              david               shulkin’s   1
## 3476           davidson               officials   1
## 3477              davis                  admits   1
## 3478              davis                  hanson   1
## 3479                day                    2016   1
## 3480                day              centennial   1
## 3481                day                    form   1
## 3482                day                 heading   1
## 3483                day                included   1
## 3484                day                     kim   1
## 3485                day                   night   1
## 3486                day                  parade   1
## 3487                day                  pastor   1
## 3488                day                 planned   1
## 3489                day                   polls   1
## 3490                day                  taking   1
## 3491                day                   world   1
## 3492               days                     ago   1
## 3493               days                 leading   1
## 3494               days                    lots   1
## 3495               days                 massive   1
## 3496               days                 planned   1
## 3497            daytona                     500   1
## 3498                 de                    niro   1
## 3499                 de                   sousa   1
## 3500               dead               including   1
## 3501               dead                likewise   1
## 3502             deadly                   catch   1
## 3503             deadly                epidemic   1
## 3504             deadly                fentanyl   1
## 3505             deadly               sanctuary   1
## 3506             deadly               substance   1
## 3507               deal                demanded   1
## 3508               deal                    dems   1
## 3509               deal                     don   1
## 3510               deal                    fail   1
## 3511               deal               including   1
## 3512               deal                   isn’t   1
## 3513               deal                  looked   1
## 3514               deal             negotiation   1
## 3515               deal                 offered   1
## 3516               deal                tomorrow   1
## 3517               deal                   trade   1
## 3518               deal                  unlike   1
## 3519               deal                wouldn’t   1
## 3520            dealing                   drugs   1
## 3521              deals                    debt   1
## 3522              deals                 economy   1
## 3523              deals                    iran   1
## 3524              deals                   start   1
## 3525              deals                      va   1
## 3526               dean                    type   1
## 3527              death                  opioid   1
## 3528              death                 threats   1
## 3529             debate                 victory   1
## 3530           debating               wonderful   1
## 3531             debbie                   lesko   1
## 3532               debt                  coming   1
## 3533            decades                      13   1
## 3534            decades              businesses   1
## 3535            decades                    fair   1
## 3536            decades                  legacy   1
## 3537            decades                  lowest   1
## 3538           december                    2015   1
## 3539           december                     4th   1
## 3540             decent                  people   1
## 3541           decision                   means   1
## 3542          decisions                   based   1
## 3543           decisive                    step   1
## 3544          declaring                     war   1
## 3545           declined                      13   1
## 3546          decorated                  marine   1
## 3547               deep             connections   1
## 3548            deepest             condolences   1
## 3549             deeply               concerned   1
## 3550             deeply                saddened   1
## 3551             defame                belittle   1
## 3552            defense           authorization   1
## 3553            defense                    bill   1
## 3554            defense                   build   1
## 3555           deficits            negotiations   1
## 3556            defying                   gains   1
## 3557         degenerate                    fool   1
## 3558              delay                obstruct   1
## 3559             delays                    hope   1
## 3560         delegation                 heading   1
## 3561            deleted                  33,000   1
## 3562            deleted                     685   1
## 3563            deleted                    acid   1
## 3564            deliver                     mob   1
## 3565           delivers                 remarks   1
## 3566                dem             commercials   1
## 3567                dem                  crimes   1
## 3568                dem               giveaways   1
## 3569                dem                    laws   1
## 3570                dem                    memo   1
## 3571                dem                recently   1
## 3572                dem                   voted   1
## 3573             demand                congress   1
## 3574             demand                  safety   1
## 3575           demanded            transparency   1
## 3576           demented                   words   1
## 3577          democracy           sanctimonious   1
## 3578           democrat                  agenda   1
## 3579           democrat             assemblyman   1
## 3580           democrat                   bruce   1
## 3581           democrat                 charges   1
## 3582           democrat                   comey   1
## 3583           democrat                     con   1
## 3584           democrat                 crazies   1
## 3585           democrat                  debbie   1
## 3586           democrat                     i.t   1
## 3587           democrat                  judges   1
## 3588           democrat                    laws   1
## 3589           democrat                     led   1
## 3590           democrat               loyalists   1
## 3591           democrat                    memo   1
## 3592           democrat             obstruction   1
## 3593           democrat             politicians   1
## 3594           democrat                    scam   1
## 3595           democrat                  smears   1
## 3596           democrat                    spin   1
## 3597           democrat                    vote   1
## 3598           democrat                 warrior   1
## 3599         democratic                lawmaker   1
## 3600         democratic                national   1
## 3601          democrats               abandoned   1
## 3602          democrats                  aren’t   1
## 3603          democrats                   based   1
## 3604          democrats                  border   1
## 3605          democrats                   can’t   1
## 3606          democrats                    cave   1
## 3607          democrats                colluded   1
## 3608          democrats                  coming   1
## 3609          democrats                   crazy   1
## 3610          democrats               criticize   1
## 3611          democrats                  didn’t   1
## 3612          democrats                 disgust   1
## 3613          democrats                   don’t   1
## 3614          democrats                     fbi   1
## 3615          democrats                     fix   1
## 3616          democrats                  gallup   1
## 3617          democrats                    held   1
## 3618          democrats             investigate   1
## 3619          democrats           investigating   1
## 3620          democrats                    lead   1
## 3621          democrats                 leading   1
## 3622          democrats              mistakenly   1
## 3623          democrats             obstruction   1
## 3624          democrats                    pass   1
## 3625          democrats                   phony   1
## 3626          democrats                playbook   1
## 3627          democrats                  policy   1
## 3628          democrats                 pushing   1
## 3629          democrats                  refuse   1
## 3630          democrats                 refused   1
## 3631          democrats                 respond   1
## 3632          democrats                  search   1
## 3633          democrats                   stand   1
## 3634          democrats                  that’s   1
## 3635          democrats                thinking   1
## 3636          democrats                 totally   1
## 3637          democrats                   voted   1
## 3638          democrats                  wished   1
## 3639          democrats                   won’t   1
## 3640               dems                 anymore   1
## 3641               dems                    care   1
## 3642               dems                   caved   1
## 3643               dems                 changed   1
## 3644               dems              corruption   1
## 3645               dems                 created   1
## 3646               dems                    fisa   1
## 3647               dems                 justice   1
## 3648               dems                  losing   1
## 3649               dems                   march   1
## 3650               dems                 opposed   1
## 3651               dems                  people   1
## 3652               dems                  public   1
## 3653               dems                  refuse   1
## 3654               dems                remember   1
## 3655               dems                    stay   1
## 3656               dems                   voted   1
## 3657               dems                     win   1
## 3658               dems                     won   1
## 3659               dems                   won’t   1
## 3660               dems                    word   1
## 3661             denied                  access   1
## 3662             denies               knowledge   1
## 3663            dennard               destroyed   1
## 3664   denuclearization                    deal   1
## 3665   denuclearization                   we’ve   1
## 3666   denuclearization                   won’t   1
## 3667            denying            intelligence   1
## 3668          departing                    _jba   1
## 3669          departing              pittsburgh   1
## 3670          departing               wisconsin   1
## 3671         department             ambassadors   1
## 3672         department             disgraceful   1
## 3673         department                 lawyers   1
## 3674         department                 leaking   1
## 3675         department                official   1
## 3676         department                 tonight   1
## 3677           depleted          infrastructure   1
## 3678        deplorables               statement   1
## 3679             deport                 violent   1
## 3680          deporting                criminal   1
## 3681               dept                   don’t   1
## 3682              depth           investigation   1
## 3683           deputies                  heroes   1
## 3684           deranged                 omarosa   1
## 3685         dershowitz                 harvard   1
## 3686                des                  moines   1
## 3687           desantis                  easily   1
## 3688        description              mainstream   1
## 3689           deserted                 streets   1
## 3690            deserve                   enjoy   1
## 3691           deserves              everyone’s   1
## 3692          deserving                 nominee   1
## 3693               desk                    fast   1
## 3694         despicable               democrats   1
## 3695            destroy                 florida   1
## 3696            destroy                 michael   1
## 3697            destroy                  people   1
## 3698            destroy                strategy   1
## 3699          destroyed                people’s   1
## 3700           destroys                   james   1
## 3701             detail               including   1
## 3702           detailed               knowledge   1
## 3703           detailed                  letter   1
## 3704             detain                 illegal   1
## 3705             detain                judicial   1
## 3706           detained                   prior   1
## 3707      determination               adventure   1
## 3708        devaluation                    game   1
## 3709        devastation              constantly   1
## 3710          developer                 happily   1
## 3711         developing                 missile   1
## 3712         developing                  nation   1
## 3713        development                 experts   1
## 3714        development                 payment   1
## 3715              diane               feinstein   1
## 3716             dianne               feinstein   1
## 3717               dick              blumenthal   1
## 3718              dicks                    head   1
## 3719             didn’t                  barack   1
## 3720             didn’t                    call   1
## 3721             didn’t                  commit   1
## 3722             didn’t              government   1
## 3723             didn’t                  happen   1
## 3724             didn’t                     lie   1
## 3725             didn’t                  recall   1
## 3726             didn’t                   shady   1
## 3727             didn’t                    stop   1
## 3728             didn’t                    vote   1
## 3729                die               accidents   1
## 3730                die                   happy   1
## 3731               died                      20   1
## 3732              diego                  county   1
## 3733         difference                   maker   1
## 3734         difference                  prices   1
## 3735            dignity                 purpose   1
## 3736              dimon                 running   1
## 3737             dinesh                 d’souza   1
## 3738             dinner                 tonight   1
## 3739             direct                     hit   1
## 3740           directed                 michael   1
## 3741          direction                   china   1
## 3742          direction               including   1
## 3743           director                   artie   1
## 3744           director                   david   1
## 3745           director                    marc   1
## 3746           director                    mick   1
## 3747         disability            applications   1
## 3748             disarm                     law   1
## 3749           disaster                 funding   1
## 3750           disaster                response   1
## 3751          disciples                 brought   1
## 3752        disciplined                approach   1
## 3753            discord              disruption   1
## 3754          discredit               candidate   1
## 3755        discredited                     bob   1
## 3756        discredited                   trump   1
## 3757        discredited                   witch   1
## 3758        discredited                woodward   1
## 3759            discuss                  school   1
## 3760          discussed               including   1
## 3761         discussing             immigration   1
## 3762         discussing                 spygate   1
## 3763        discussions                   wef18   1
## 3764      disfunctional                  people   1
## 3765           disgrace                   mitch   1
## 3766          disgraced             christopher   1
## 3767        disgraceful                practice   1
## 3768        disgraceful               situation   1
## 3769         disgusting                    fake   1
## 3770         disgusting                   false   1
## 3771         disgusting                 illegal   1
## 3772         disgusting                    news   1
## 3773         disgusting                    word   1
## 3774          dishonest                     act   1
## 3775          dishonest          disinformation   1
## 3776          dishonest             newscasters   1
## 3777          dishonest                   press   1
## 3778          dishonest               reporters   1
## 3779          dishonest                    weak   1
## 3780          dishonest                  weekly   1
## 3781     disinformation                campaign   1
## 3782          dismantle                 nuclear   1
## 3783             disney                     j.p   1
## 3784            display                 located   1
## 3785           disposed                   let’s   1
## 3786           disposed            prescription   1
## 3787   disproportionate               influence   1
## 3788          disproven                 unnamed   1
## 3789      disqualifying               conflicts   1
## 3790            distant                  future   1
## 3791        distinction                    mick   1
## 3792      distinguished                    life   1
## 3793      distinguished                military   1
## 3794      distinguished                    west   1
## 3795          distorted                     key   1
## 3796           district                     map   1
## 3797           division                distrust   1
## 3798                dnc                 clinton   1
## 3799                dnc                    paid   1
## 3800                dnc                  refuse   1
## 3801                dnc                  rigged   1
## 3802                dnc                  seldom   1
## 3803                dnc                     wow   1
## 3804             doctor                     ron   1
## 3805           document                 written   1
## 3806          documents                    held   1
## 3807          documents                relating   1
## 3808          documents               requested   1
## 3809          documents              unredacted   1
## 3810               dodd                   frank   1
## 3811            dodgers                     red   1
## 3812            doesn’t                   bring   1
## 3813            doesn’t                   build   1
## 3814            doesn’t                    care   1
## 3815            doesn’t                disclose   1
## 3816            doesn’t                     fit   1
## 3817            doesn’t                  happen   1
## 3818            doesn’t                    lose   1
## 3819            doesn’t                  report   1
## 3820            doesn’t                   waste   1
## 3821                doj                     dhs   1
## 3822                doj             infiltrated   1
## 3823              doj’s                  emails   1
## 3824               dole  congressionalgoldmedal   1
## 3825               dole                 darling   1
## 3826             dollar                aluminum   1
## 3827             dollar                    fine   1
## 3828             dollar           investigation   1
## 3829             dollar               reduction   1
## 3830             dollar                   trade   1
## 3831             dollar                    wall   1
## 3832            dollars                     p.o   1
## 3833            dollars                    paid   1
## 3834            dollars                    rent   1
## 3835                don             blankenship   1
## 3836                don                      jr   1
## 3837                don                   lemon   1
## 3838                don              mcgahn.the   1
## 3839                don               perfectly   1
## 3840                don                   trump   1
## 3841              don’t                  change   1
## 3842              don’t                evacuate   1
## 3843              don’t                    hand   1
## 3844              don’t                    live   1
## 3845              don’t                   match   1
## 3846              don’t                  matter   1
## 3847              don’t                    miss   1
## 3848              don’t                obstruct   1
## 3849              don’t                     pay   1
## 3850              don’t                  resist   1
## 3851              don’t                  retain   1
## 3852              don’t                separate   1
## 3853              don’t                   speak   1
## 3854              don’t                 support   1
## 3855              don’t                    talk   1
## 3856              don’t                threaten   1
## 3857              don’t                   trade   1
## 3858              don’t           underestimate   1
## 3859              don’t              understand   1
## 3860              don’t                    wait   1
## 3861             donald                    tusk   1
## 3862          donations                    drop   1
## 3863               door                 hearing   1
## 3864               door               testimony   1
## 3865              doors               testimony   1
## 3866              doral                       5   1
## 3867            dossier               basically   1
## 3868            dossier                 details   1
## 3869            dossier                    fame   1
## 3870            dossier                    fisa   1
## 3871            dossier                gathered   1
## 3872            dossier                   leaks   1
## 3873            dossier                 uranium   1
## 3874            dossier                  wasn’t   1
## 3875               doug                   ducey   1
## 3876               doug                    wead   1
## 3877                dov                  hikind   1
## 3878               dowd                   march   1
## 3879               dowd                      ty   1
## 3880           downward                   trend   1
## 3881                 dr                 darrell   1
## 3882                 dr                   david   1
## 3883                 dr                    ford   1
## 3884                 dr                jeffress   1
## 3885                 dr                  king’s   1
## 3886                 dr                  martin   1
## 3887              dream                   jason   1
## 3888              dream               screaming   1
## 3889             dreams                  bigger   1
## 3890             driven                  insane   1
## 3891            drivers                 license   1
## 3892             drives               democrats   1
## 3893            driving                  prices   1
## 3894            driving                  secret   1
## 3895               drop                      42   1
## 3896            dropped                      27   1
## 3897             drudge                  report   1
## 3898               drug                 dealers   1
## 3899               drug                epidemic   1
## 3900               drug                    flow   1
## 3901               drug                   price   1
## 3902               drug             takebackday   1
## 3903              drugs                   crime   1
## 3904              drugs                likewise   1
## 3905              drugs                  poison   1
## 3906              drugs                    pour   1
## 3907              drugs                 pouring   1
## 3908              drunk                 drugged   1
## 3909            dubuque                    iowa   1
## 3910               dumb                   comey   1
## 3911               dumb             immigration   1
## 3912               dumb               questions   1
## 3913               dumb                remember   1
## 3914               dumb              southerner   1
## 3915               dumb               statement   1
## 3916               dumb                   trade   1
## 3917            dumbest                   worst   1
## 3918            dumping                  ground   1
## 3919               duty                      35   1
## 3920              dying                 evening   1
## 3921              dying                mediocre   1
## 3922              dying               newspaper   1
## 3923           dynamics               announced   1
## 3924                e.u                    drop   1
## 3925             eagles                football   1
## 3926            earlier                 meeting   1
## 3927           earliest              supporters   1
## 3928             earned                   raise   1
## 3929             easily                    pass   1
## 3930             easily             promulgated   1
## 3931             easily                 settled   1
## 3932             easily                     won   1
## 3933               east                   peace   1
## 3934             easter                     egg   1
## 3935            eastern                   event   1
## 3936               easy                bringing   1
## 3937               easy                solution   1
## 3938             echoed               president   1
## 3939           economic                    boom   1
## 3940           economic                 council   1
## 3941           economic             development   1
## 3942           economic                  engine   1
## 3943           economic               financial   1
## 3944           economic                   forum   1
## 3945           economic              indicators   1
## 3946           economic           opportunities   1
## 3947           economic                policies   1
## 3948           economic                  policy   1
## 3949           economic                recovery   1
## 3950           economic            relationship   1
## 3951           economic             retaliation   1
## 3952           economic                 revival   1
## 3953           economic              turnaround   1
## 3954            economy                 booming   1
## 3955            economy                    grew   1
## 3956            economy             jobsnotmobs   1
## 3957            economy                likewise   1
## 3958            economy                  lowest   1
## 3959            economy                military   1
## 3960            economy                    read   1
## 3961            economy              rebuilding   1
## 3962            economy             strengthens   1
## 3963            economy                  stupid   1
## 3964                 ed                 praises   1
## 3965               edge               statewide   1
## 3966           educated                   women   1
## 3967          education               officials   1
## 3968          effective                       4   1
## 3969          effective                  border   1
## 3970          effective                    huge   1
## 3971          effective             immediately   1
## 3972          effective               president   1
## 3973          effective              renovation   1
## 3974          efficient              profitable   1
## 3975            efforts           draintheswamp   1
## 3976                egg                    roll   1
## 3977              elect                 america   1
## 3978              elect                  andres   1
## 3979              elect               blackburn   1
## 3980            elected               governors   1
## 3981           election                     4.1   1
## 3982           election                   based   1
## 3983           election                 brennan   1
## 3984           election                    call   1
## 3985           election              candidates   1
## 3986           election             celebration   1
## 3987           election                   comey   1
## 3988           election                coverage   1
## 3989           election               embracing   1
## 3990           election                 farmers   1
## 3991           election                   fight   1
## 3992           election                   fraud   1
## 3993           election                    info   1
## 3994           election               inspector   1
## 3995           election                   isn’t   1
## 3996           election                   lines   1
## 3997           election                   march   1
## 3998           election                  record   1
## 3999           election                remember   1
## 4000           election             republicans   1
## 4001           election                response   1
## 4002           election                stealing   1
## 4003           election                  that’s   1
## 4004           election                   theft   1
## 4005           election                 there’s   1
## 4006           election                tomorrow   1
## 4007           election               trumptime   1
## 4008           election                  unlike   1
## 4009           election                     win   1
## 4010           election                    wins   1
## 4011          elections                   obama   1
## 4012          elections                     red   1
## 4013          elections             republicans   1
## 4014          elections                 there’s   1
## 4015          electoral              corruption   1
## 4016          electoral                  system   1
## 4017           electric                    cars   1
## 4018         electrical                   stuff   1
## 4019        electronics                   plant   1
## 4020           elegance               precision   1
## 4021           elements                arriving   1
## 4022           elevator               screamers   1
## 4023             eleven                 nations   1
## 4024          eliminate                 tariffs   1
## 4025               elko                  nevada   1
## 4026            ellipse               beginning   1
## 4027              ellis                     fbi   1
## 4028              email                   probe   1
## 4029              email                  server   1
## 4030             emails                   comey   1
## 4031             emails                   notes   1
## 4032            embassy                 earlier   1
## 4033           embedded               informant   1
## 4034           embraces                commerce   1
## 4035             emerge                 respect   1
## 4036          emergency             declaration   1
## 4037          emergency                disaster   1
## 4038            emerson                 college   1
## 4039           emmanuel                  macron   1
## 4040           emmanuel                 suffers   1
## 4041          emotional               reopening   1
## 4042           employed                   bruce   1
## 4043          employees                   peter   1
## 4044              empty                  figure   1
## 4045              empty                    seat   1
## 4046                 en                   route   1
## 4047            enabled                      ms   1
## 4048            endorse                    adam   1
## 4049            endorse                     asa   1
## 4050            endorse                    john   1
## 4051            endorse                   katie   1
## 4052            endorse                   kevin   1
## 4053            endorse                  martha   1
## 4054           endorsed                    rick   1
## 4055        endorsement                  strong   1
## 4056        endorsement                   tough   1
## 4057        endorsement                    vote   1
## 4058        endorsement                 winners   1
## 4059        endrosement                    maga   1
## 4060           enduring              prosperity   1
## 4061              enemy              combatants   1
## 4062              enemy                    fire   1
## 4063             energy               abundance   1
## 4064             energy               dominance   1
## 4065             energy                 stamina   1
## 4066        enforcement             authorities   1
## 4067        enforcement                  heroes   1
## 4068        enforcement                 maximum   1
## 4069        enforcement                partners   1
## 4070        enforcement                  people   1
## 4071         engagement                  harris   1
## 4072            england                patriots   1
## 4073              enjoy                      54   1
## 4074              enjoy                    maga   1
## 4075              enjoy                watching   1
## 4076              enjoy                   wef18   1
## 4077           enjoying                 ruining   1
## 4078           enormous                  strain   1
## 4079           enormous                    wins   1
## 4080         enrollment                  starts   1
## 4081             ensure                 violent   1
## 4082              enter                    shot   1
## 4083           entering                  mexico   1
## 4084         enthusiasm               knowledge   1
## 4085         enthusiasm                  spirit   1
## 4086       enthusiastic             endorsement   1
## 4087             entire                    bush   1
## 4088             entire                    cost   1
## 4089             entire                 debacle   1
## 4090             entire                    east   1
## 4091             entire            intelligence   1
## 4092             entire                   media   1
## 4093             entire                southern   1
## 4094             entire                   trump   1
## 4095         entrapping                  people   1
## 4096        environment                chanting   1
## 4097        environment                    i’ve   1
## 4098      environmental                    laws   1
## 4099      environmental              protection   1
## 4100                epa                  agenda   1
## 4101                epa                  andrew   1
## 4102                epa                   chief   1
## 4103                epa                  record   1
## 4104               epic                   crowd   1
## 4105               epic                 victory   1
## 4106           epidemic                 america   1
## 4107           epidemic                    hard   1
## 4108                era          investigations   1
## 4109               eric                  holder   1
## 4110               eric            schneiderman   1
## 4111               erik                 paulsen   1
## 4112            erratic                behavior   1
## 4113        essentially                 stating   1
## 4114        established                   based   1
## 4115           estimate                     adp   1
## 4116            estonia               president   1
## 4117            eternal               chronicle   1
## 4118            eternal               gratitude   1
## 4119            eternal                   quest   1
## 4120                 eu                 council   1
## 4121                 eu                   trade   1
## 4122             europe                   build   1
## 4123             europe                fairness   1
## 4124             europe                     u.s   1
## 4125           europe’s                 borders   1
## 4126           europe’s              protection   1
## 4127           european                citizens   1
## 4128           european                military   1
## 4129           evacuate                 quickly   1
## 4130         evansville                 indiana   1
## 4131             evelyn               rodriguez   1
## 4132            evening                    lots   1
## 4133            evening                    unga   1
## 4134              event                    fake   1
## 4135              event                 staying   1
## 4136              event                    unga   1
## 4137             events                 planned   1
## 4138             events             surrounding   1
## 4139             events               unfolding   1
## 4140           eventual                recovery   1
## 4141         eventually                 kremlin   1
## 4142         everglades               reservoir   1
## 4143        everybody’s                 talking   1
## 4144         everyone’s                 support   1
## 4145           evidence                provided   1
## 4146           evidence              whatsoever   1
## 4147               evil                    anti   1
## 4148               evil                    nazi   1
## 4149               evil                   stand   1
## 4150              evils               committed   1
## 4151          excellent                  advice   1
## 4152          excellent                    book   1
## 4153          excellent                    call   1
## 4154          excellent             preliminary   1
## 4155          excellent                    wine   1
## 4156        exceptional                  person   1
## 4157           exciting                     day   1
## 4158           exciting                   event   1
## 4159           exciting                  future   1
## 4160           exciting                    maga   1
## 4161           exciting                   times   1
## 4162           exciting                upcoming   1
## 4163          exclusive                  donald   1
## 4164        exclusively                   focus   1
## 4165           executed                  strike   1
## 4166          executive                  branch   1
## 4167          executive                director   1
## 4168           exerting                negative   1
## 4169              exist                  rarely   1
## 4170              exist                   story   1
## 4171           existent                 sources   1
## 4172           existing                    team   1
## 4173           existing                    weak   1
## 4174             expand              operations   1
## 4175          expanding                   labor   1
## 4176            expands                   chain   1
## 4177             expect                    it’s   1
## 4178          expedited                   basis   1
## 4179          expedited                 request   1
## 4180            expense                     god   1
## 4181          expensive              healthcare   1
## 4182          expensive                   paris   1
## 4183          expensive                   plans   1
## 4184          expensive                   signs   1
## 4185          expensive                solution   1
## 4186         experience                   north   1
## 4187             expert                teachers   1
## 4188         explaining                security   1
## 4189            exposed                 charles   1
## 4190            express             condolences   1
## 4191         expressing             frustration   1
## 4192           extended                    cold   1
## 4193          extensive                 contact   1
## 4194       extortionist             accusations   1
## 4195    extraordinarily                     low   1
## 4196      extraordinary               americans   1
## 4197      extraordinary              confidence   1
## 4198      extraordinary             congressman   1
## 4199      extraordinary           contributions   1
## 4200      extraordinary                  energy   1
## 4201      extraordinary                governor   1
## 4202      extraordinary                   james   1
## 4203      extraordinary                     job   1
## 4204      extraordinary                     law   1
## 4205      extraordinary                 senator   1
## 4206      extraordinary                  soccer   1
## 4207      extraordinary                    step   1
## 4208            extreme                    bias   1
## 4209          extremely               dangerous   1
## 4210          extremely               expensive   1
## 4211          extremely                   happy   1
## 4212          extremely                 popular   1
## 4213          extremist                democrat   1
## 4214         fabricated                 fiction   1
## 4215           fabulous                     job   1
## 4216           facebook                  google   1
## 4217       facilitation                payments   1
## 4218             failed                 attempt   1
## 4219             failed            presidential   1
## 4220             failed          prognosticator   1
## 4221             failed               socialist   1
## 4222            failing                     n.y   1
## 4223            failing                      ny   1
## 4224            failing                  quotes   1
## 4225            failing                   wrote   1
## 4226              fails                    hard   1
## 4227               fair                   deals   1
## 4228               fair             immigration   1
## 4229               fair                    laws   1
## 4230               fair                   media   1
## 4231               fair                   nafta   1
## 4232               fair                  tester   1
## 4233             fairly                    tops   1
## 4234           fairness                   nancy   1
## 4235              faith               community   1
## 4236              faith                 leaders   1
## 4237              faith             negotiation   1
## 4238               fake                      60   1
## 4239               fake                     abc   1
## 4240               fake                accounts   1
## 4241               fake                   books   1
## 4242               fake                 corrupt   1
## 4243               fake                   dirty   1
## 4244               fake              disgusting   1
## 4245               fake               dishonest   1
## 4246               fake              mainstream   1
## 4247               fake                   memos   1
## 4248               fake                   piece   1
## 4249               fake               reporters   1
## 4250               fake                  russia   1
## 4251               fake             suppression   1
## 4252               fake                     war   1
## 4253               fake              washington   1
## 4254        falconheavy                  launch   1
## 4255               fall                 shortly   1
## 4256             fallen                      50   1
## 4257              false              accusation   1
## 4258              false             allegations   1
## 4259              false                   claim   1
## 4260              false                election   1
## 4261              false                    hope   1
## 4262              false             information   1
## 4263              false                rhetoric   1
## 4264              false                   story   1
## 4265            falsely                 accused   1
## 4266            falsely                reported   1
## 4267            falsely               submitted   1
## 4268               fame                 fortune   1
## 4269           families                affected   1
## 4270           families                   badly   1
## 4271           families                 friends   1
## 4272           families              protecting   1
## 4273           families                    safe   1
## 4274           families                students   1
## 4275           families                teachers   1
## 4276           families           vfwconvention   1
## 4277             family                 breakup   1
## 4278             family         congratulations   1
## 4279             family                 deserve   1
## 4280             family                   enjoy   1
## 4281             family                   faith   1
## 4282             family                 friends   1
## 4283             family                 justice   1
## 4284             family                 michael   1
## 4285             family                received   1
## 4286             family              separation   1
## 4287             family                  tester   1
## 4288             famous                    hair   1
## 4289           famously                  missed   1
## 4290          fantastic                   crowd   1
## 4291          fantastic                  people   1
## 4292          fantastic                   rally   1
## 4293          fantastic               secretary   1
## 4294          fantastic                     win   1
## 4295               farm            agricultural   1
## 4296               farm                seizures   1
## 4297            farmers                  growth   1
## 4298            farmers             immediately   1
## 4299            farmers                 killing   1
## 4300            farmers             practically   1
## 4301            farmers                   south   1
## 4302            farmers                     soy   1
## 4303        fascinating                    book   1
## 4304               fast             beneficiary   1
## 4305               fast                economic   1
## 4306               fast                 federal   1
## 4307               fast                     u.s   1
## 4308             faster                    pace   1
## 4309             faster                   we’re   1
## 4310         fatalities                  beware   1
## 4311            fatally                  flawed   1
## 4312             father                  ceejay   1
## 4313             fatter                  fatter   1
## 4314           faulkner                       9   1
## 4315                fbi                      36   1
## 4316                fbi                  aren’t   1
## 4317                fbi               assistant   1
## 4318                fbi                 brennan   1
## 4319                fbi                   chris   1
## 4320                fbi                  closed   1
## 4321                fbi              department   1
## 4322                fbi               employees   1
## 4323                fbi                  failed   1
## 4324                fbi                 finally   1
## 4325                fbi                  follow   1
## 4326                fbi                    hook   1
## 4327                fbi                   joint   1
## 4328                fbi                   layer   1
## 4329                fbi                  looked   1
## 4330                fbi                  misled   1
## 4331                fbi                  missed   1
## 4332                fbi                official   1
## 4333                fbi                received   1
## 4334                fbi             regulations   1
## 4335                fbi          representative   1
## 4336                fbi                  russia   1
## 4337                fbi                  secret   1
## 4338                fbi                 simpson   1
## 4339                fbi                   spied   1
## 4340                fbi                 spygate   1
## 4341                fbi                 started   1
## 4342                fbi                  wasn’t   1
## 4343              fbi’s                    sick   1
## 4344                fcc                wouldn’t   1
## 4345               fear                 america   1
## 4346           fearless                  leader   1
## 4347           february                       8   1
## 4348                fed               forecasts   1
## 4349                fed                payments   1
## 4350                fed                    regs   1
## 4351            federal             authorities   1
## 4352            federal                    dole   1
## 4353            federal                    govt   1
## 4354            federal                gratuity   1
## 4355            federal                  judges   1
## 4356            federal                     law   1
## 4357            federal                  office   1
## 4358            federal                republic   1
## 4359         federalist                  senior   1
## 4360         federalist                 society   1
## 4361          federally               supported   1
## 4362               feel                  unsafe   1
## 4363              feels                strongly   1
## 4364             felipe                      vi   1
## 4365               fell                      11   1
## 4366               fell                      50   1
## 4367             fellow               democrats   1
## 4368             fellow              servicemen   1
## 4369             felons                   crazy   1
## 4370             felony             convictions   1
## 4371             female                 admiral   1
## 4372           fentanyl                  coming   1
## 4373            fiction                    dems   1
## 4374            fiction                   enemy   1
## 4375            fiction                     nbc   1
## 4376            fiction                 product   1
## 4377              field                     day   1
## 4378              fifty                   times   1
## 4379            fighter                     jay   1
## 4380           fighters                    fema   1
## 4381           fighters                governor   1
## 4382           fighting                   force   1
## 4383           fighting                    hard   1
## 4384           fighting                 radical   1
## 4385           fighting                   tooth   1
## 4386            filings                 forward   1
## 4387             filthy                canopies   1
## 4388             filthy                comedian   1
## 4389              final                 innings   1
## 4390              final            negotiations   1
## 4391              final                   witch   1
## 4392            finally                   added   1
## 4393            finally               beginning   1
## 4394            finally                deserves   1
## 4395            finally                  liddle   1
## 4396            finally              rebuilding   1
## 4397            finally                  recede   1
## 4398            finally                    time   1
## 4399            finally                 winning   1
## 4400            finance                   cohen   1
## 4401            finance                    laws   1
## 4402            finance                 lawyers   1
## 4403            finance               violation   1
## 4404            finance              violations   1
## 4405          financial                    gain   1
## 4406          financial                    loss   1
## 4407          financial                 markets   1
## 4408          financial                   model   1
## 4409          financial                  nation   1
## 4410          financial             obligations   1
## 4411          financial                 success   1
## 4412          financial                  system   1
## 4413          financial                    team   1
## 4414          financing               violation   1
## 4415            finding                democrat   1
## 4416            finding                   votes   1
## 4417           findings                       1   1
## 4418               fine                    dems   1
## 4419               fine                lawyer’s   1
## 4420               fine              leadership   1
## 4421               fine                military   1
## 4422               fine                opponent   1
## 4423             finest                 fairest   1
## 4424             finish                  strong   1
## 4425             finish                   trade   1
## 4426               fire           extinguishers   1
## 4427               fire                fighters   1
## 4428               fire                  robert   1
## 4429           firearms                   adept   1
## 4430              fired                      17   1
## 4431              fired                       3   1
## 4432              fired                   agent   1
## 4433              fired                   james   1
## 4434              fired                 omarosa   1
## 4435              fired                  people   1
## 4436              fires                 farming   1
## 4437             firing                  afraid   1
## 4438             firing                     bob   1
## 4439             firing                   james   1
## 4440             firing                     jim   1
## 4441             firing                   peter   1
## 4442               firm              eventually   1
## 4443             firmly                    stop   1
## 4444               fisa                   comey   1
## 4445               fisa                  courts   1
## 4446               fisa                   dirty   1
## 4447               fisa                disgrace   1
## 4448               fisa               documents   1
## 4449               fisa                hearings   1
## 4450               fisa                     law   1
## 4451               fisa                    scam   1
## 4452               fisa                warrants   1
## 4453             fitton                      jw   1
## 4454                fix                  choice   1
## 4455                fix                   crazy   1
## 4456                fix                    daca   1
## 4457                fix                  judges   1
## 4458               flag                 taxcuts   1
## 4459               flag                  waving   1
## 4460           flailing                   lying   1
## 4461               flat                   broke   1
## 4462        flexibility                    save   1
## 4463             flight                    1380   1
## 4464             flight                      93   1
## 4465               flip                   putin   1
## 4466              flood                   gates   1
## 4467              flood                    wall   1
## 4468           florence                  county   1
## 4469           florence                 deepest   1
## 4470           florence                    fema   1
## 4471           florence                  police   1
## 4472           florence              tremendous   1
## 4473            florida                   billy   1
## 4474            florida           congressional   1
## 4475            florida                election   1
## 4476            florida               emergency   1
## 4477            florida                 highway   1
## 4478            florida                     pan   1
## 4479            florida                    rick   1
## 4480            florida                 shooter   1
## 4481            florida                shooting   1
## 4482            florida                  talked   1
## 4483            florida                 tonight   1
## 4484            florida                    vote   1
## 4485            florida                   voted   1
## 4486               flow                     top   1
## 4487            flynn’s                defenses   1
## 4488            flynn’s                    life   1
## 4489                fmr                     ice   1
## 4490               foes             weaponizing   1
## 4491             follow               _atlantic   1
## 4492             follow                   local   1
## 4493             follow                protocol   1
## 4494               fool                   trade   1
## 4495            foolish                  people   1
## 4496           football                    game   1
## 4497           football                national   1
## 4498           football                    team   1
## 4499              force                  family   1
## 4500              force                 leading   1
## 4501              force                     ret   1
## 4502              force                   south   1
## 4503             forced                  family   1
## 4504          forecasts                     4.7   1
## 4505            foreign                  agents   1
## 4506            foreign                    born   1
## 4507            foreign               countries   1
## 4508            foreign            intelligence   1
## 4509            foreign              investment   1
## 4510            foreign                   lands   1
## 4511            foreign                  policy   1
## 4512            foreign                   power   1
## 4513            foreign                   spies   1
## 4514            foreign                 workers   1
## 4515            foreman                     jim   1
## 4516             forest                   fires   1
## 4517            forests                  remedy   1
## 4518            forever                iacp2018   1
## 4519          forgotten                    rudy   1
## 4520               form                  pelosi   1
## 4521             formal              chargeable   1
## 4522             formed                 details   1
## 4523         formidable                 trading   1
## 4524        forthcoming                 shortly   1
## 4525        fortunately                    daca   1
## 4526            fortune                lobbyist   1
## 4527            forward                    bump   1
## 4528             foster                  friess   1
## 4529             fought             brilliantly   1
## 4530             fought                campaign   1
## 4531              found                 freedom   1
## 4532         foundation                  andrew   1
## 4533         foundation               donations   1
## 4534         foundation                 illegal   1
## 4535            founder                 trump's   1
## 4536           founders                 invoked   1
## 4537                fox                    poll   1
## 4538             france                      26   1
## 4539             france                 address   1
## 4540             france               discussed   1
## 4541             france                  family   1
## 4542             france                  honors   1
## 4543             france                  people   1
## 4544             france            relationship   1
## 4545             france               yesterday   1
## 4546              fraud                  headed   1
## 4547              fraud               including   1
## 4548          fraudster                 uranium   1
## 4549         fraudulent              activities   1
## 4550         fraudulent               reporting   1
## 4551         fraudulent                 service   1
## 4552               free                    fair   1
## 4553               free                    flow   1
## 4554               free                  market   1
## 4555               free                military   1
## 4556               free                    pass   1
## 4557               free                   press   1
## 4558               free              prosperous   1
## 4559               free                  school   1
## 4560            freedom                     day   1
## 4561            freedom                   house   1
## 4562            freedom             memorialday   1
## 4563             freely                    pour   1
## 4564            freeman                    wall   1
## 4565             french                protests   1
## 4566             french                   wines   1
## 4567         frequently                 blocked   1
## 4568              fresh                   start   1
## 4569           freshman               lawmakers   1
## 4570             friday         congratulations   1
## 4571             friday                 reports   1
## 4572             friday                   stock   1
## 4573             friday               testimony   1
## 4574             friend                    _pmo   1
## 4575             friend              ambassador   1
## 4576             friend               contained   1
## 4577             friend                 darrell   1
## 4578             friend                     jim   1
## 4579             friend                      pm   1
## 4580             friend                 senator   1
## 4581             friend                   witch   1
## 4582            friends               including   1
## 4583            friends               ripevelyn   1
## 4584            friends                     vfw   1
## 4585               fuel              fertilizer   1
## 4586        fundamental           underpinnings   1
## 4587            funding                    fast   1
## 4588        fundraising                strength   1
## 4589              funny                      79   1
## 4590             future                   ahead   1
## 4591             future                benefits   1
## 4592             future                   brian   1
## 4593             future             congressman   1
## 4594             future                 farmers   1
## 4595             future                 illegal   1
## 4596             future                 justice   1
## 4597             future               potential   1
## 4598             future                 senator   1
## 4599             future                    star   1
## 4600                g.m                   event   1
## 4601               game                 changed   1
## 4602               game                 changer   1
## 4603               game                   enjoy   1
## 4604               game                  played   1
## 4605               game                 ratings   1
## 4606             garden            proclamation   1
## 4607             garlin                    murl   1
## 4608               gary                  player   1
## 4609              garza                national   1
## 4610                gas                  attack   1
## 4611                gas                 killing   1
## 4612                gas                  prices   1
## 4613           gasoline                  prices   1
## 4614             gather                    info   1
## 4615             gather                 support   1
## 4616          gathering             information   1
## 4617            gazette                newsroom   1
## 4618                gdp             immediately   1
## 4619                gdp           manufacturing   1
## 4620                gdp                    rate   1
## 4621                gdp                  report   1
## 4622                gdp                 revised   1
## 4623                gdp                  stated   1
## 4624                gem                   loves   1
## 4625                gen                   kelly   1
## 4626            generel             independent   1
## 4627            generic           congressional   1
## 4628            generic                    poll   1
## 4629           generous                 remarks   1
## 4630             genius                     god   1
## 4631             genius                 sitting   1
## 4632          gentleman                  canada   1
## 4633             george                 foreman   1
## 4634            georgia                    maga   1
## 4635            georgia               secretary   1
## 4636            germany                    pays   1
## 4637             getter              campaigner   1
## 4638              giant                 amnesty   1
## 4639              giant                     red   1
## 4640              giant                   scene   1
## 4641              giant                    step   1
## 4642              giant                wrecking   1
## 4643             gillum                conceded   1
## 4644             giving                  andrew   1
## 4645             giving                 bargain   1
## 4646             giving               concealed   1
## 4647             giving                 crooked   1
## 4648             giving                   hours   1
## 4649             giving                 schools   1
## 4650          glassdoor                    it’s   1
## 4651               glen               simpson’s   1
## 4652              glenn                   hegar   1
## 4653             global                    call   1
## 4654             global                    lead   1
## 4655             global                 warming   1
## 4656          globalist                    koch   1
## 4657           glorious                  future   1
## 4658               goal                     rob   1
## 4659                god nationalprayerbreakfast   1
## 4660              god’s                    love   1
## 4661               gold               goteamusa   1
## 4662               gold                    star   1
## 4663            goldman                    vice   1
## 4664               golf                    club   1
## 4665               golf                   major   1
## 4666            goodbye               yesterday   1
## 4667          goodlatte                       1   1
## 4668          goodlatte                    bill   1
## 4669          goodlatte                      ii   1
## 4670             google                  search   1
## 4671                gop              candidates   1
## 4672                gop                farmbill   1
## 4673                gop           gubernatorial   1
## 4674                gop               lawmakers   1
## 4675          goteamusa                olympics   1
## 4676                gov                     dan   1
## 4677                gov                    race   1
## 4678             govern             republicans   1
## 4679         government                  agency   1
## 4680         government              authorized   1
## 4681         government                    cell   1
## 4682         government               employees   1
## 4683         government               officials   1
## 4684         government                  phones   1
## 4685         government               resources   1
## 4686         government                 schumer   1
## 4687         government            surveillance   1
## 4688         government                 there’s   1
## 4689       government’s                    plan   1
## 4690       governmental             authorities   1
## 4691        governments                 counter   1
## 4692           governor                  andrew   1
## 4693           governor                     bob   1
## 4694           governor                 brown’s   1
## 4695           governor                   david   1
## 4696           governor                    doug   1
## 4697           governor                    greg   1
## 4698           governor                    jobs   1
## 4699           governor                    lost   1
## 4700           governor                    phil   1
## 4701           governor                   ralph   1
## 4702           governor                     roy   1
## 4703           governor                   scott   1
## 4704           governor                  strong   1
## 4705           governor                    vote   1
## 4706           governor                  you’ve   1
## 4707          governors                    it’s   1
## 4708               govt               approvals   1
## 4709               govt                spending   1
## 4710                gps               disgraced   1
## 4711           gracious                 gesture   1
## 4712           gracious                 remarks   1
## 4713           graduate              successful   1
## 4714             graham                cpac2018   1
## 4715          grandkids                    talk   1
## 4716            granted             citizenship   1
## 4717           grassley                    bill   1
## 4718           gratuity                 statute   1
## 4719              grave                   abuse   1
## 4720              grave                  danger   1
## 4721              grave            humanitarian   1
## 4722            gravely                  people   1
## 4723            greatly                 honored   1
## 4724            greatly                improved   1
## 4725            greatly                   raise   1
## 4726            greatly                   slows   1
## 4727              greek            independence   1
## 4728         greenbrier                 classic   1
## 4729         greenbrier                  resort   1
## 4730               greg                  abbott   1
## 4731           gridiron                  dinner   1
## 4732              grief                  hoping   1
## 4733              gross           mismanagement   1
## 4734               grow                  faster   1
## 4735             growth                    rate   1
## 4736             growth              regulatory   1
## 4737             growth                  streak   1
## 4738         guaranteed                  result   1
## 4739         guarantees                  change   1
## 4740              guard                patriots   1
## 4741              guard                  troops   1
## 4742              guess                  people   1
## 4743                gun                 control   1
## 4744                gun                   tying   1
## 4745            gutless               anonymous   1
## 4746                guy                   comey   1
## 4747                guy                   danny   1
## 4748                guy                 doesn’t   1
## 4749                guy                    it’s   1
## 4750                guy                    vote   1
## 4751               guys                 mueller   1
## 4752                gwu                research   1
## 4753                h.r                    5895   1
## 4754                h.r                mcmaster   1
## 4755             hacked                 hillary   1
## 4756            hacking                   gregg   1
## 4757           hallowed                  fields   1
## 4758           hallowed                 resting   1
## 4759               halt                    vote   1
## 4760            hammond                 funnier   1
## 4761               hand                 matches   1
## 4762             handed                   enemy   1
## 4763             handed               expensive   1
## 4764           handling                stupidly   1
## 4765             hangar                 tonight   1
## 4766           hanukkah                 melania   1
## 4767             happen                congress   1
## 4768             happen                 darrell   1
## 4769           happened                   enjoy   1
## 4770           happened                   witch   1
## 4771          happening                 america   1
## 4772          happening                  faster   1
## 4773          happening                overseas   1
## 4774          happening                   sites   1
## 4775          happening                   space   1
## 4776          happening              underneath   1
## 4777          happening                   watch   1
## 4778            happily                  defend   1
## 4779            happily                  living   1
## 4780            happily                    sign   1
## 4781              happy                   100th   1
## 4782              happy                   382nd   1
## 4783              happy                    71st   1
## 4784              happy                     7th   1
## 4785              happy             anniversary   1
## 4786              happy          armedforcesday   1
## 4787              happy             competitors   1
## 4788              happy            constitution   1
## 4789              happy                   crowd   1
## 4790              happy                  easter   1
## 4791              happy                 flagday   1
## 4792              happy                  fourth   1
## 4793              happy                hanukkah   1
## 4794              happy            independence   1
## 4795              happy  internationalwomensday   1
## 4796              happy                   labor   1
## 4797              happy                memorial   1
## 4798              happy                mother’s   1
## 4799              happy                   nancy   1
## 4800              happy      nationalfarmersday   1
## 4801              happy                  spying   1
## 4802              happy           stpatricksday   1
## 4803               hard                charging   1
## 4804               hard                  crying   1
## 4805               hard                  earned   1
## 4806               hard                evidence   1
## 4807               hard                  fought   1
## 4808               hard               hurricane   1
## 4809               hard                   lines   1
## 4810               hard                    nick   1
## 4811               hard             republicans   1
## 4812               hard                    time   1
## 4813               hard                   worst   1
## 4814           hardened               criminals   1
## 4815           hardened               democrats   1
## 4816        hardworking             congressman   1
## 4817        hardworking                     gem   1
## 4818             harley             competitors   1
## 4819             harley               customers   1
## 4820             harley                  excuse   1
## 4821            harmony                    fake   1
## 4822             harris                faulkner   1
## 4823             harris                  shares   1
## 4824            harvard                  called   1
## 4825            harvard                graduate   1
## 4826             harvey               weinstein   1
## 4827             hassan                 rouhani   1
## 4828               hate                  filled   1
## 4829              hater             congressman   1
## 4830             haters                  losers   1
## 4831             haters                   shout   1
## 4832              hates                  donald   1
## 4833              hates                 michael   1
## 4834             hating                  frauds   1
## 4835             hatred                  agenda   1
## 4836            haven’t                 changed   1
## 4837            haven’t                 figured   1
## 4838               he’s               disgraced   1
## 4839               he’s              exercising   1
## 4840               he’s                 leading   1
## 4841               he’s                 worried   1
## 4842               head           international   1
## 4843           headline                     kim   1
## 4844          headlines                   trump   1
## 4845              heads                  people   1
## 4846             health                   raise   1
## 4847         healthcare                   costs   1
## 4848         healthcare                  impose   1
## 4849         healthcare                programs   1
## 4850         healthcare             protections   1
## 4851         healthcare                 results   1
## 4852         healthcare                 supreme   1
## 4853         healthcare                  system   1
## 4854               hear                directly   1
## 4855               hear                    fake   1
## 4856               hear                 reports   1
## 4857              heard               shameless   1
## 4858            hearing                    haul   1
## 4859            hearing infrastructureinamerica   1
## 4860           hearings                    held   1
## 4861           hearings          investigations   1
## 4862              heart                  attack   1
## 4863              heart               continues   1
## 4864      heartbreaking                  bridge   1
## 4865             hearts                  warmth   1
## 4866            heather                  nauert   1
## 4867              heavy                emphasis   1
## 4868              heavy                   focus   1
## 4869              heavy                   heart   1
## 4870        heavyweight                  boxing   1
## 4871             hector                   garza   1
## 4872              heidi                heitkamp   1
## 4873              heidi                   voted   1
## 4874               held                 hostage   1
## 4875               held                   views   1
## 4876         helicopter                couldn’t   1
## 4877             helped                   bring   1
## 4878             helped                   build   1
## 4879             helped                    buoy   1
## 4880             helped                    pass   1
## 4881            helpful             nonetheless   1
## 4882            helping               disgraced   1
## 4883           helsinki                   putin   1
## 4884                hen              restaurant   1
## 4885              henry                    ford   1
## 4886              henry               kissinger   1
## 4887           hercules                   cargo   1
## 4888           heritage              foundation   1
## 4889           heritage                   month   1
## 4890           heritage               president   1
## 4891               hero                     bob   1
## 4892               hero                   jason   1
## 4893               hero                   major   1
## 4894               hero                 officer   1
## 4895               hero                  talked   1
## 4896             heroes                     100   1
## 4897             heroes         congratulations   1
## 4898             heroes                 unknown   1
## 4899             heroic                     act   1
## 4900             heroic                    crew   1
## 4901             heroin                fentanyl   1
## 4902            heroism                 courage   1
## 4903             hiding             information   1
## 4904             hiding                  mccabe   1
## 4905             highly             anticipated   1
## 4906             highly               competent   1
## 4907             highly                 illegal   1
## 4908             highly               overrated   1
## 4909             highly               prominent   1
## 4910             highly               qualified   1
## 4911             highly               recommend   1
## 4912             highly                renowned   1
## 4913             highly                  touted   1
## 4914             highly               unethical   1
## 4915            hightax                  andrew   1
## 4916             hikers                  pelosi   1
## 4917              hikes                     u.s   1
## 4918            hillary                campaign   1
## 4919            hillary                   comey   1
## 4920            hillary                 created   1
## 4921            hillary                 deleted   1
## 4922            hillary               democrats   1
## 4923            hillary                  emails   1
## 4924            hillary             exoneration   1
## 4925            hillary                  flunky   1
## 4926            hillary                    lost   1
## 4927            hillary                  people   1
## 4928            hillary                  russia   1
## 4929            hillary              supporters   1
## 4930            hillary                     win   1
## 4931          hillary’s               illegally   1
## 4932          hillary’s                  lawyer   1
## 4933             hilton                    head   1
## 4934          hindrance                    john   1
## 4935              hindu                festival   1
## 4936               hire                american   1
## 4937               hire                  border   1
## 4938              hired                  steele   1
## 4939             hiring                  judges   1
## 4940             hiring           manythousands   1
## 4941             hiring               thousands   1
## 4942           hispanic               americans   1
## 4943           hispanic                heritage   1
## 4944          hispanics                  asians   1
## 4945          hispanics                    feel   1
## 4946           historic              commitment   1
## 4947           historic                  crowds   1
## 4948           historic                    deal   1
## 4949           historic                   highs   1
## 4950           historic                  levels   1
## 4951           historic              milestones   1
## 4952           historic                progress   1
## 4953           historic             proportions   1
## 4954           historic             rescissions   1
## 4955           historic             transaction   1
## 4956           historic                 victory   1
## 4957       historically             cooperative   1
## 4958       historically                     low   1
## 4959            history                    beat   1
## 4960            history                  brings   1
## 4961            history             congressman   1
## 4962            history                 culture   1
## 4963            history                 defying   1
## 4964            history               democrats   1
## 4965            history                  fixing   1
## 4966            history                    he’s   1
## 4967            history                    maga   1
## 4968            history                  median   1
## 4969            history                remember   1
## 4970            history                 spygate   1
## 4971                hit                  25,000   1
## 4972                hit                  puerto   1
## 4973               hits                      14   1
## 4974               hoax             christopher   1
## 4975               hoax               continues   1
## 4976               hoax           investigation   1
## 4977               hoax                 started   1
## 4978               hoax                  that’s   1
## 4979             hockey                    team   1
## 4980               hold                hearings   1
## 4981            holiday                    july   1
## 4982            holiday                observed   1
## 4983            holiday                   sales   1
## 4984            holiday                  season   1
## 4985          holocaust             remembrance   1
## 4986               holt                 preston   1
## 4987               holy                    days   1
## 4988              homan                     fmr   1
## 4989               home               addresses   1
## 4990               home                    josh   1
## 4991               home                mortgage   1
## 4992               home                  pastor   1
## 4993               home                     pay   1
## 4994               home                    wall   1
## 4995              homes                   cheer   1
## 4996              homes                 offices   1
## 4997                hon                  robert   1
## 4998           honduras               effective   1
## 4999           honduras               guatemala   1
## 5000           honduras                  mexico   1
## 5001             honest                     abe   1
## 5002             honest                 polling   1
## 5003             honest             prosecutors   1
## 5004             honest               reporting   1
## 5005             honest                services   1
## 5006             honest                    vote   1
## 5007            honesty                     jim   1
## 5008            honesty                    wins   1
## 5009              honor                   billy   1
## 5010              honor                 charlie   1
## 5011              honor                 cherish   1
## 5012              honor                      dr   1
## 5013              honor                 society   1
## 5014          honorable                 william   1
## 5015           honoring                 america   1
## 5016           honoring                 justice   1
## 5017               hope                    john   1
## 5018               hope                    opec   1
## 5019               hope                   oprah   1
## 5020               hope                  people   1
## 5021               hope               president   1
## 5022               hope                  report   1
## 5023               hope              republican   1
## 5024               hope             republicans   1
## 5025         horrendous                    weak   1
## 5026           horrible                   crime   1
## 5027           horrible             immigration   1
## 5028           horrible                   issue   1
## 5029           horrible                language   1
## 5030           horrible                     law   1
## 5031           horrible              reputation   1
## 5032           horrible                shooting   1
## 5033           horrible              statements   1
## 5034           horrible                    term   1
## 5035           horrible                   trade   1
## 5036           horrible                   witch   1
## 5037           horribly             threatening   1
## 5038           horribly               viciously   1
## 5039           horrific                  attack   1
## 5040           horrific                barriers   1
## 5041             horror                    drug   1
## 5042            horrors                  taking   1
## 5043           hospital                     god   1
## 5044               host                    _pmo   1
## 5045               host               america’s   1
## 5046               host                 today’s   1
## 5047           hostages                 remains   1
## 5048           hostages                 testing   1
## 5049            hostile                 iranian   1
## 5050            hostile                   media   1
## 5051          hostility                  report   1
## 5052            hosting                    maga   1
## 5053                hot               commodity   1
## 5054                hot                    fake   1
## 5055                hot                  seller   1
## 5056            hottest                    jobs   1
## 5057              hours                 kristin   1
## 5058              hours                    left   1
## 5059              house                       3   1
## 5060              house               america’s   1
## 5061              house                approved   1
## 5062              house              background   1
## 5063              house              candidates   1
## 5064              house         congratulations   1
## 5065              house                  doctor   1
## 5066              house                 freedom   1
## 5067              house                   hated   1
## 5068              house                honoring   1
## 5069              house               including   1
## 5070              house           investigators   1
## 5071              house                  lawyer   1
## 5072              house             legislation   1
## 5073              house                   level   1
## 5074              house                 melania   1
## 5075              house                official   1
## 5076              house               oversight   1
## 5077              house                   panel   1
## 5078              house               president   1
## 5079              house                   sarah   1
## 5080              house                    seat   1
## 5081              house                   seats   1
## 5082              house                 shortly   1
## 5083              house                   staff   1
## 5084              house                   votes   1
## 5085              house                   wrong   1
## 5086              house               yesterday   1
## 5087              house                  you’ve   1
## 5088            houston                  astros   1
## 5089              hsien                   loong   1
## 5090           huckabee                 sanders   1
## 5091               huge                election   1
## 5092               huge               magarally   1
## 5093               huge                  volume   1
## 5094              hugin              successful   1
## 5095              human               potential   1
## 5096              human                    soul   1
## 5097              human                 tragedy   1
## 5098       humanitarian                disaster   1
## 5099       humanitarian                 mistake   1
## 5100           humboldt                    team   1
## 5101        humiliating                  defeat   1
## 5102      humiliatingly                  forced   1
## 5103            hundred                thousand   1
## 5104               hunt             brilliantly   1
## 5105               hunt                composed   1
## 5106               hunt                continue   1
## 5107               hunt             disgraceful   1
## 5108               hunt               illegally   1
## 5109               hunt                     joe   1
## 5110               hunt                   moves   1
## 5111               hunt              originally   1
## 5112               hunt                 proceed   1
## 5113               hunt                  report   1
## 5114               hunt                  rigged   1
## 5115               hunt                     run   1
## 5116               hunt                 russian   1
## 5117               hunt             stopthebias   1
## 5118               hunt                  that’s   1
## 5119          hurricane                  damage   1
## 5120          hurricane                disaster   1
## 5121          hurricane                 michael   1
## 5122          hurricane                   money   1
## 5123          hurricane                  season   1
## 5124         hurricanes                   happy   1
## 5125         hurricanes            unemployment   1
## 5126         hurricanes                    vote   1
## 5127               hurt                   badly   1
## 5128               hurt                  people   1
## 5129               hurt                    troy   1
## 5130              hurts                american   1
## 5131              hurts                families   1
## 5132            husband                  father   1
## 5133         hxduwsoelz                 remarks   1
## 5134                i.p                   theft   1
## 5135                i.q             individuals   1
## 5136                i.t                 scandal   1
## 5137                i’d                  invite   1
## 5138                i’d                   strip   1
## 5139               i’ll                complain   1
## 5140               i’ll                   write   1
## 5141                i’m               beginning   1
## 5142                i’m                draining   1
## 5143                i’m                 picking   1
## 5144                i’m               president   1
## 5145                i’m                 pushing   1
## 5146                i’m                  taking   1
## 5147                i’m                   tough   1
## 5148           iacp2018                    lesm   1
## 5149                ice                  border   1
## 5150                ice                director   1
## 5151                ice                leftwing   1
## 5152                ice                liberate   1
## 5153                ice                officers   1
## 5154              icymi                   watch   1
## 5155               idea               employees   1
## 5156              ideas                policies   1
## 5157          identical                   signs   1
## 5158              idlib                province   1
## 5159            illegal                      96   1
## 5160            illegal                     act   1
## 5161            illegal              activities   1
## 5162            illegal                  border   1
## 5163            illegal                currency   1
## 5164            illegal                disgrace   1
## 5165            illegal                families   1
## 5166            illegal                    hoax   1
## 5167            illegal               immigrant   1
## 5168            illegal                improper   1
## 5169            illegal                  joseph   1
## 5170            illegal                 machine   1
## 5171            illegal                meetings   1
## 5172            illegal                 mueller   1
## 5173            illegal                practice   1
## 5174            illegal                  rigged   1
## 5175            illegal                  shadow   1
## 5176            illegal            surveillance   1
## 5177            illegal                 traffic   1
## 5178            illegal                  voting   1
## 5179            illegal                   witch   1
## 5180          illegally                 brought   1
## 5181          illegally                children   1
## 5182          illegally                  coming   1
## 5183          illegally                 deleted   1
## 5184          illegally                  played   1
## 5185          imitation                syndrome   1
## 5186        immediately                  buying   1
## 5187        immediately                  escort   1
## 5188        immediately                   filed   1
## 5189        immediately                    fire   1
## 5190        immediately                 mueller   1
## 5191        immediately                    pass   1
## 5192        immediately               president   1
## 5193        immediately                 sending   1
## 5194          immigrant                  births   1
## 5195         immigrants                 animals   1
## 5196         immigrants                  voting   1
## 5197        immigration                 affects   1
## 5198        immigration                   based   1
## 5199        immigration                   can’t   1
## 5200        immigration                  change   1
## 5201        immigration             enforcement   1
## 5202        immigration                    fast   1
## 5203        immigration                   hurts   1
## 5204        immigration             legislation   1
## 5205        immigration               loopholes   1
## 5206        immigration                 protect   1
## 5207        immigration                  reform   1
## 5208        immigration                stronger   1
## 5209        immigration                 studies   1
## 5210            impeach                   trump   1
## 5211         impeaching                   trump   1
## 5212         impeccable              reputation   1
## 5213        implausible                   based   1
## 5214           implying                   anger   1
## 5215             impose                 massive   1
## 5216             impose               socialism   1
## 5217             impose                   steel   1
## 5218         impossible                     gdp   1
## 5219         impressive                  people   1
## 5220           improper                   goals   1
## 5221         improperly              influenced   1
## 5222            improve                  school   1
## 5223           improved                   trade   1
## 5224          improving               america’s   1
## 5225          improving                training   1
## 5226       inaccessible                  island   1
## 5227         inaccurate               reporting   1
## 5228       inaccurately                 covered   1
## 5229       inaccurately                reported   1
## 5230       inaccurately               reporting   1
## 5231          inaugural                 meeting   1
## 5232        inaugurated                 mexican   1
## 5233            include                       1   1
## 5234            include                 funding   1
## 5235            include                  strong   1
## 5236           included                   brave   1
## 5237           includes                    daca   1
## 5238           includes                    fake   1
## 5239           includes                  honest   1
## 5240          including                      17   1
## 5241          including              aggravated   1
## 5242          including                     bmw   1
## 5243          including                  crimea   1
## 5244          including                 deleted   1
## 5245          including               diplomats   1
## 5246          including                  harley   1
## 5247          including                   heart   1
## 5248          including                    jeff   1
## 5249          including                  majors   1
## 5250          including                 massive   1
## 5251          including                   money   1
## 5252          including                  moving   1
## 5253          including                      ms   1
## 5254          including             republicans   1
## 5255          including                 servers   1
## 5256          including                stopping   1
## 5257          including                   stops   1
## 5258          including                     t.v   1
## 5259          including                   theft   1
## 5260          including                   women   1
## 5261             income                    hits   1
## 5262             income                 workers   1
## 5263        incompetent                 blunder   1
## 5264        incompetent                 corrupt   1
## 5265        incompetent                   mayor   1
## 5266        incompetent                opponent   1
## 5267        incompetent                  people   1
## 5268       inconsistent               testimony   1
## 5269          incorrect                    hope   1
## 5270           increase                     oil   1
## 5271           increase                  output   1
## 5272           increase                spending   1
## 5273          increased                economic   1
## 5274          increased             regulations   1
## 5275         increasing                    pace   1
## 5276       increasingly               difficult   1
## 5277         incredible                    book   1
## 5278         incredible                citizens   1
## 5279         incredible         congratulations   1
## 5280         incredible                 courage   1
## 5281         incredible                    he’s   1
## 5282         incredible                    hero   1
## 5283         incredible                  heroes   1
## 5284         incredible                 midterm   1
## 5285         incredible                  moment   1
## 5286         incredible                   rally   1
## 5287         incredible             secretaries   1
## 5288         incredible               suffering   1
## 5289         incredible                     tax   1
## 5290         incredible                    time   1
## 5291         incredible                tomorrow   1
## 5292         incredible                  upward   1
## 5293         incredible                   women   1
## 5294         incredible                 wounded   1
## 5295         incredibly               beautiful   1
## 5296         incredibly                 corrupt   1
## 5297          incumbent               president   1
## 5298          indelibly                 written   1
## 5299       independence            balticsummit   1
## 5300        independent               judiciary   1
## 5301              index                    rose   1
## 5302            indiana                    he’s   1
## 5303            indiana                    maga   1
## 5304            indiana                   rally   1
## 5305            indiana                 shortly   1
## 5306            indiana                 tonight   1
## 5307         indicators                  what’s   1
## 5308          indignant                bringing   1
## 5309      indispensable               guardians   1
## 5310       individually                approved   1
## 5311        individuals               convicted   1
## 5312           industry                  plants   1
## 5313           industry                 setting   1
## 5314        ineffective                     guy   1
## 5315        ineffective                 senator   1
## 5316        ineffective                     u.s   1
## 5317              inept             politicians   1
## 5318        inexpensive               deterrent   1
## 5319           infested                breeding   1
## 5320            inflict                    pain   1
## 5321             inform                     jay   1
## 5322          informant                  andrew   1
## 5323        information                     bad   1
## 5324        information                 corrupt   1
## 5325        information                     gee   1
## 5326        information                    jail   1
## 5327        information                    nice   1
## 5328        information                    wall   1
## 5329        information                     wow   1
## 5330     infrastructure                    plan   1
## 5331           ingraham                 tonight   1
## 5332            initial                   steps   1
## 5333            injured                soldiers   1
## 5334            innings                    rich   1
## 5335           innocent                 afghans   1
## 5336           innocent               americans   1
## 5337           innocent                  jewish   1
## 5338           innocent                  people   1
## 5339          innocents               including   1
## 5340         innovation                    fair   1
## 5341             insane             immigration   1
## 5342           insecure                   oprah   1
## 5343        inspections                 subject   1
## 5344          inspiring                    vote   1
## 5345          instantly                shooting   1
## 5346          instantly                   start   1
## 5347          instincts             christopher   1
## 5348          institute                 tariffs   1
## 5349       insufficient                       3   1
## 5350              intel                    cmte   1
## 5351       intelligence                  breach   1
## 5352       intelligence               briefings   1
## 5353       intelligence              collection   1
## 5354       intelligence                    head   1
## 5355       intelligence           investigation   1
## 5356       intelligence                   loved   1
## 5357       intelligence                official   1
## 5358       intelligence                  people   1
## 5359       intelligence                  system   1
## 5360       intelligence              tradecraft   1
## 5361           intended             republicans   1
## 5362            intense                    fake   1
## 5363            intense                scrutiny   1
## 5364         intentions                  highly   1
## 5365        interagency                    task   1
## 5366   intercontinental               ballistic   1
## 5367            interim                     hon   1
## 5368       intermediary             christopher   1
## 5369           internal           deliberations   1
## 5370      international                 airport   1
## 5371      international                 experts   1
## 5372      international                    golf   1
## 5373      international                partners   1
## 5374      international                   women   1
## 5375           internet                   sales   1
## 5376           internet                     tax   1
## 5377        interviewed                       4   1
## 5378       introduction                 tonight   1
## 5379        investigate                   comey   1
## 5380        investigate             potentially   1
## 5381       investigated                   judge   1
## 5382      investigating                 clinton   1
## 5383      investigating                    paul   1
## 5384      investigation                      46   1
## 5385      investigation                    alan   1
## 5386      investigation               americans   1
## 5387      investigation                   begun   1
## 5388      investigation                 brennan   1
## 5389      investigation                     dan   1
## 5390      investigation                   found   1
## 5391      investigation                  headed   1
## 5392      investigation                involved   1
## 5393      investigation                premised   1
## 5394     investigations                  texted   1
## 5395     investigations                  what’s   1
## 5396      investigative             journalists   1
## 5397      investigative                 process   1
## 5398      investigators            investigated   1
## 5399      investigators                  people   1
## 5400      investigators                    wall   1
## 5401         investment                    risk   1
## 5402          involving                multiple   1
## 5403               iowa                  border   1
## 5404               iowa                     god   1
## 5405               iowa                nebraska   1
## 5406               iowa                 tonight   1
## 5407                 iq              individual   1
## 5408                 iq                  person   1
## 5409               iran                     150   1
## 5410               iran                 nuclear   1
## 5411               iran               sanctions   1
## 5412               iran                  secret   1
## 5413               iran                   syria   1
## 5414             iran’s                military   1
## 5415            iranian              harassment   1
## 5416            iranian                  regime   1
## 5417           iranians               including   1
## 5418               iraq                   syria   1
## 5419               isis                    iran   1
## 5420               isis                judicial   1
## 5421               isis                 related   1
## 5422            islamic               terrorism   1
## 5423             island               territory   1
## 5424              isn’t               disgraced   1
## 5425              isn’t                    easy   1
## 5426              isn’t                 hillary   1
## 5427              isn’t                 mueller   1
## 5428              isn’t                  paying   1
## 5429              isn’t                     rod   1
## 5430              isn’t                    true   1
## 5431             israel         congratulations   1
## 5432             israel                 nuclear   1
## 5433             israel                    vote   1
## 5434               issa                   house   1
## 5435              issue                    fair   1
## 5436              issue                    vote   1
## 5437             issued                subpoena   1
## 5438               it’s             astonishing   1
## 5439               it’s                    easy   1
## 5440               it’s                 economy   1
## 5441               it’s                    fake   1
## 5442               it’s               federally   1
## 5443               it’s              government   1
## 5444               it’s                    hard   1
## 5445               it’s                   march   1
## 5446               it’s                  tracks   1
## 5447               it’s                    true   1
## 5448               it’s                   unity   1
## 5449               it’s                   worth   1
## 5450               item                    veto   1
## 5451                j.p                  morgan   1
## 5452               jack                 johnson   1
## 5453             jacket                  refers   1
## 5454            jackson                  family   1
## 5455            jackson                      md   1
## 5456       jacksonville               sheriff’s   1
## 5457               jail                     dan   1
## 5458               jair               bolsonaro   1
## 5459                jam                    taxi   1
## 5460              james                 running   1
## 5461              jamie                   dimon   1
## 5462            january                      16   1
## 5463            january                    2017   1
## 5464            january                    20th   1
## 5465              japan                     i’m   1
## 5466              japan                 tonight   1
## 5467           japanese             delegations   1
## 5468              jared                 kushner   1
## 5469              jared                   polis   1
## 5470              jason                  seaman   1
## 5471                jay                 sekulow   1
## 5472                jay                  webber   1
## 5473            jealous                  people   1
## 5474               jean                  claude   1
## 5475            jeanine                   pirro   1
## 5476               jeff                  double   1
## 5477               jeff                 johnson   1
## 5478               jeff                   zuker   1
## 5479              jenna                   ellis   1
## 5480           jeopardy                    it’s   1
## 5481              jerry                moonbeam   1
## 5482             jersey                 running   1
## 5483          jerusalem         congratulations   1
## 5484              jesse                  waters   1
## 5485              jesse                 watters   1
## 5486                jet                fighters   1
## 5487             jewish                  people   1
## 5488               jews             slaughtered   1
## 5489         jiatfsouth               _northcom   1
## 5490                jim                   comey   1
## 5491                jim                  mattis   1
## 5492                job             _ambassador   1
## 5493                job                     act   1
## 5494                job                 anymore   1
## 5495                job                    doug   1
## 5496                job                    fema   1
## 5497                job                 hosting   1
## 5498                job                     i’m   1
## 5499                job                   james   1
## 5500                job                    jeff   1
## 5501                job                   kevin   1
## 5502                job                  market   1
## 5503                job                 melania   1
## 5504                job             performance   1
## 5505                job                 playing   1
## 5506                job               president   1
## 5507                job                   press   1
## 5508                job                  rachel   1
## 5509                job               slimeball   1
## 5510                job                   tears   1
## 5511                job               thousands   1
## 5512                job                   tough   1
## 5513                job               yesterday   1
## 5514               jobs                    bill   1
## 5515               jobs                 flowing   1
## 5516               jobs                  growth   1
## 5517               jobs                   loves   1
## 5518               jobs                  market   1
## 5519               jobs                 meeting   1
## 5520               jobs                military   1
## 5521               jobs                     oil   1
## 5522               jobs                 pouring   1
## 5523               jobs                 records   1
## 5524               jobs                   steel   1
## 5525               jobs                 tariffs   1
## 5526               jobs            unemployment   1
## 5527               jobs               workforce   1
## 5528        jobsnotmobs                    vote   1
## 5529                joe                   biden   1
## 5530                joe                 crowley   1
## 5531                joe                donnelly   1
## 5532                joe                 dunford   1
## 5533               john                  canley   1
## 5534               john                    dean   1
## 5535               john                    faso   1
## 5536               john                 kerry’s   1
## 5537               john                  mccain   1
## 5538               john              mclaughlin   1
## 5539               john                 roberts   1
## 5540               john                  tester   1
## 5541             john’s                   voice   1
## 5542               join                millions   1
## 5543               join                   proud   1
## 5544               join                 student   1
## 5545               join                     tpp   1
## 5546              joint                     bid   1
## 5547              joint                  chiefs   1
## 5548              joint               exercises   1
## 5549              joint             interagency   1
## 5550              joint                 session   1
## 5551              joint               statement   1
## 5552              joint                  terror   1
## 5553              joint                     u.s   1
## 5554               joke                     act   1
## 5555                jon                     kyl   1
## 5556                jon                tester’s   1
## 5557              jones                      19   1
## 5558             joshua                    holt   1
## 5559            journal                 opinion   1
## 5560       journalistic               standards   1
## 5561                 jr                     lou   1
## 5562                 jr                  sounds   1
## 5563               juan                  brings   1
## 5564              judge                     bob   1
## 5565              judge                rosemary   1
## 5566              judge                   sided   1
## 5567              judge                  throws   1
## 5568            judge’s                military   1
## 5569             judges                      26   1
## 5570             judges                     run   1
## 5571           judicial                   picks   1
## 5572           judicial                strength   1
## 5573               july                    31st   1
## 5574               july                     4th   1
## 5575               july                     9th   1
## 5576               july              increasing   1
## 5577               june                      12   1
## 5578               june                    20th   1
## 5579               june                     5th   1
## 5580               june                       6   1
## 5581       jurisdiction                 thereof   1
## 5582            justice                 anthony   1
## 5583            justice               attorneys   1
## 5584            justice                  called   1
## 5585            justice                clarence   1
## 5586            justice                 contact   1
## 5587            justice                exciting   1
## 5588            justice                     fbi   1
## 5589            justice                    john   1
## 5590            justice                   obama   1
## 5591            justice                 roberts   1
## 5592            justice                 stevens   1
## 5593            justice                  system   1
## 5594          justified          unquestionably   1
## 5595             justin                    acts   1
## 5596           justin’s                   false   1
## 5597             kansas                  highly   1
## 5598             kansas                   rally   1
## 5599             kansas                    vote   1
## 5600              kanye                  george   1
## 5601           kasich’s                      lt   1
## 5602            katelyn                 caralle   1
## 5603          kavanaugh                approved   1
## 5604          kavanaugh                hearings   1
## 5605          kavanaugh                  scotus   1
## 5606          kavanaugh                 victory   1
## 5607            keeping                     oil   1
## 5608            keeping                  tester   1
## 5609              kelly                    book   1
## 5610              kelly                   isn’t   1
## 5611                ken                  paxton   1
## 5612            kennedy                  scotus   1
## 5613           kentucky                    maga   1
## 5614              kerry                   can’t   1
## 5615            kerry’s                possibly   1
## 5616              kevin                   brady   1
## 5617              kevin                   stitt   1
## 5618              kevin                   yoder   1
## 5619                key                  allies   1
## 5620                key                  issues   1
## 5621                key                national   1
## 5622                key                    west   1
## 5623           keystone                     cop   1
## 5624             killed                     166   1
## 5625             killed                   don’t   1
## 5626             killed                   fifty   1
## 5627             killed              linebacker   1
## 5628            killing                      63   1
## 5629            killing                  animal   1
## 5630            killing                  jewish   1
## 5631                kim              hypocrites   1
## 5632                kim                prepared   1
## 5633                kim                reynolds   1
## 5634                kim                strassel   1
## 5635               king                  felipe   1
## 5636               king                      jr   1
## 5637               king                  salman   1
## 5638             king’s                  legacy   1
## 5639            kingdom               affirming   1
## 5640            knowing             participant   1
## 5641          knowingly                 falsely   1
## 5642             kobach                     won   1
## 5643              korea                     500   1
## 5644              korea                     cut   1
## 5645              korea              developing   1
## 5646              korea                    fake   1
## 5647              korea                 heading   1
## 5648              korea                hostages   1
## 5649              korea                meetings   1
## 5650              korea                military   1
## 5651              korea                 nuclear   1
## 5652              korea               proclaims   1
## 5653              korea                  proves   1
## 5654              korea               recommits   1
## 5655              korea                   syria   1
## 5656              korea                     war   1
## 5657            korea’s                  leader   1
## 5658             korean                   labor   1
## 5659             korean                  people   1
## 5660             korean         representatives   1
## 5661             korean                 workers   1
## 5662             kremer                   women   1
## 5663            kremlin               connected   1
## 5664            kremlin                 sources   1
## 5665           kristian                 saucier   1
## 5666            kristin                  fisher   1
## 5667            krysten                  sinema   1
## 5668             kudlow                  wilbur   1
## 5669              labor                    camp   1
## 5670           lacrosse                  player   1
## 5671               lady                 barbara   1
## 5672            landing                   craft   1
## 5673            landing                 shortly   1
## 5674           landmark                      va   1
## 5675              lanny                   davis   1
## 5676            largest                economic   1
## 5677            largest                 nuclear   1
## 5678            largest                   trade   1
## 5679            lasting                     epa   1
## 5680            lasting                    site   1
## 5681               late                    date   1
## 5682               late                  joseph   1
## 5683            latinos                      16   1
## 5684             latvia               president   1
## 5685            laughed                  loudly   1
## 5686           laughing                    pray   1
## 5687           laughing                   stock   1
## 5688             launch                     pad   1
## 5689             launch                   sites   1
## 5690           launches                 nuclear   1
## 5691              laura                ingraham   1
## 5692                law            additionally   1
## 5693                law                   armed   1
## 5694                law                   firms   1
## 5695                law                 they’re   1
## 5696             lawful             immigration   1
## 5697             lawful                    tool   1
## 5698               lawn                  hiring   1
## 5699               laws                 assault   1
## 5700               laws                  border   1
## 5701               laws                building   1
## 5702               laws                  demand   1
## 5703               laws                 protect   1
## 5704               laws                remember   1
## 5705            lawsuit                   filed   1
## 5706            lawsuit                  versus   1
## 5707            lawsuit                    wins   1
## 5708             lawyer                   angry   1
## 5709             lawyer                     gee   1
## 5710             lawyer                    lisa   1
## 5711             lawyer                    marc   1
## 5712             lawyer                 michael   1
## 5713           lawyer’s               liability   1
## 5714           lawyer’s                  office   1
## 5715            lawyers             disgraceful   1
## 5716            lawyers                    john   1
## 5717            lawyers                 letters   1
## 5718            lawyers                  office   1
## 5719              layer                    lisa   1
## 5720                 lc                  george   1
## 5721             leader                 crooked   1
## 5722             leader               mcconnell   1
## 5723            leaders                   don’t   1
## 5724            leaders                     law   1
## 5725         leadership                 bravery   1
## 5726         leadership                   found   1
## 5727         leadership                    join   1
## 5728         leadership                   learn   1
## 5729         leadership                    team   1
## 5730            leading                election   1
## 5731            leading                 pastors   1
## 5732               leah                  vukmir   1
## 5733               leak                   comey   1
## 5734               leak            confidential   1
## 5735               leak                strategy   1
## 5736             leaker                    liar   1
## 5737             leakin                    lyin   1
## 5738             leakin                 monster   1
## 5739            leaking                   lying   1
## 5740              leaks                   comey   1
## 5741              leaks                  coming   1
## 5742              leaks                 mueller   1
## 5743               leap                 forward   1
## 5744              learn                    date   1
## 5745              learn                  german   1
## 5746              leave              washington   1
## 5747             leaves                  closed   1
## 5748            leaving               argentina   1
## 5749            leaving                 arizona   1
## 5750            leaving                hospital   1
## 5751            leaving                  mexico   1
## 5752            leaving                   north   1
## 5753            leaving                  office   1
## 5754            leaving                  prison   1
## 5755            leaving               wisconsin   1
## 5756            lebanon                    ohio   1
## 5757             lebron                   james   1
## 5758                led                 assault   1
## 5759                lee                   hsien   1
## 5760                lee                  zeldin   1
## 5761               left                    base   1
## 5762               left                    dems   1
## 5763               left                 florida   1
## 5764               left                    jobs   1
## 5765               left                 lawyers   1
## 5766               left                    vote   1
## 5767           leftwing               activists   1
## 5768             legacy                   stuff   1
## 5769              legal                 analyst   1
## 5770              legal                    bust   1
## 5771              legal                    fees   1
## 5772              legal                jeopardy   1
## 5773              legal             maneuvering   1
## 5774              legal                   minds   1
## 5775              legal                  phrase   1
## 5776              legal                    team   1
## 5777              legal                   trump   1
## 5778              legal                 weapons   1
## 5779              legal                     win   1
## 5780          legalized                    bump   1
## 5781            legally                   chuck   1
## 5782            legally                 protest   1
## 5783          legendary                    gary   1
## 5784          legendary                   henry   1
## 5785          legendary                     mob   1
## 5786          legislate                security   1
## 5787        legislation                  awaits   1
## 5788        legislation               democrats   1
## 5789        legislation                  moving   1
## 5790        legislation                  passed   1
## 5791        legislative                  agenda   1
## 5792        legislative                     fix   1
## 5793         legitimate               questions   1
## 5794                leo                varadkar   1
## 5795            leonard                     leo   1
## 5796             lester                    holt   1
## 5797              let’s                   blame   1
## 5798             letter               admitting   1
## 5799             letter                  writer   1
## 5800            letting                  people   1
## 5801              level                     con   1
## 5802              level                   danny   1
## 5803              level              delegation   1
## 5804              level                     i’m   1
## 5805              level                security   1
## 5806               liar                     dan   1
## 5807               liar                    he’s   1
## 5808               liar               virtually   1
## 5809              libel                    laws   1
## 5810            liberal                 actress   1
## 5811            liberal                  agenda   1
## 5812            liberal                 enemies   1
## 5813            liberal                    fake   1
## 5814            liberal                    left   1
## 5815            liberal                   nancy   1
## 5816            liberal                  puppet   1
## 5817           liberate                   towns   1
## 5818         liberating             communities   1
## 5819        libertarian                  ticket   1
## 5820             liddle                    adam   1
## 5821                lie               elizabeth   1
## 5822                lie                 mueller   1
## 5823                lie                     sad   1
## 5824               lied                  mccabe   1
## 5825               lies                   ahead   1
## 5826               lies                   billy   1
## 5827               lies                   leaks   1
## 5828         lieutenant                  garlin   1
## 5829               life                 complex   1
## 5830               life                   house   1
## 5831               life               president   1
## 5832               life              republican   1
## 5833               life                   theme   1
## 5834               life             threatening   1
## 5835               life                    vice   1
## 5836           lifelong                ministry   1
## 5837           lifetime            appointments   1
## 5838            lightly                  looked   1
## 5839        lightweight                compared   1
## 5840              likes                covering   1
## 5841           likewise                    drop   1
## 5842           likewise                  taking   1
## 5843            limited          intellectually   1
## 5844             limits                watching   1
## 5845               line                    item   1
## 5846               line                    time   1
## 5847         linebacker                   edwin   1
## 5848              lines                   loves   1
## 5849          liquified                 natural   1
## 5850               lira                  slides   1
## 5851               list                     bad   1
## 5852          listening                     fed   1
## 5853          listening                 session   1
## 5854          lithuania               president   1
## 5855               live                security   1
## 5856               live              television   1
## 5857              lives                  ruined   1
## 5858             living               witnesses   1
## 5859             loaded                   ships   1
## 5860              loans                   taxis   1
## 5861           lobbying                   staff   1
## 5862              local             authorities   1
## 5863              local              evacuation   1
## 5864              local              government   1
## 5865              local             governments   1
## 5866              local                     law   1
## 5867              local                 leaders   1
## 5868              local                  police   1
## 5869              local               political   1
## 5870              local             politicians   1
## 5871              local                 schools   1
## 5872            locally                executed   1
## 5873           longtime                resident   1
## 5874          loopholes               including   1
## 5875              loose              dominating   1
## 5876                los                 angeles   1
## 5877               lose                    1.50   1
## 5878               lose                     151   1
## 5879               lose               elections   1
## 5880               lose                    hope   1
## 5881               lose                    jobs   1
## 5882               lose                    race   1
## 5883              loser                     cnn   1
## 5884              loser                   peter   1
## 5885              loses                billions   1
## 5886             losing                     500   1
## 5887             losing                billions   1
## 5888             losing             credibility   1
## 5889             losing                   faith   1
## 5890             losing                    i’ll   1
## 5891             losing                    post   1
## 5892             losses                     250   1
## 5893             losses              investment   1
## 5894               lost                     817   1
## 5895               lost                commerce   1
## 5896               lost                     due   1
## 5897               lost                     gov   1
## 5898               lost                   loved   1
## 5899               lost               thousands   1
## 5900               lost                   touch   1
## 5901                lot               collusion   1
## 5902                lot                    vote   1
## 5903               lots            accomplished   1
## 5904            lottery               continues   1
## 5905            lottery                  system   1
## 5906               loud                 vicious   1
## 5907             loudly                   north   1
## 5908          loudmouth                partisan   1
## 5909               love                  canada   1
## 5910               love                  france   1
## 5911               love                  people   1
## 5912               love                  puerto   1
## 5913               love                 respect   1
## 5914               love           troublemakers   1
## 5915               love                   trump   1
## 5916             lovely                    wife   1
## 5917              lover                   agent   1
## 5918              lover                     boy   1
## 5919              lover                  lawyer   1
## 5920             lovers                    lisa   1
## 5921             lovers                  strzok   1
## 5922              loves                     2nd   1
## 5923              loves                 cutting   1
## 5924              loves             mississippi   1
## 5925              loves                    ohio   1
## 5926              loves                      pa   1
## 5927              loves            pennsylvania   1
## 5928              loves               sanctuary   1
## 5929              loves                   tiger   1
## 5930             loving                  family   1
## 5931             loving                opponent   1
## 5932             loving                 parents   1
## 5933             loving                peaceful   1
## 5934                low                approval   1
## 5935                low                business   1
## 5936                low                    cnbc   1
## 5937                low                    cost   1
## 5938                low                   don’t   1
## 5939                low                     i.q   1
## 5940                low                  income   1
## 5941                low                    it’s   1
## 5942                low                    life   1
## 5943                low                 polling   1
## 5944                low                 ratings   1
## 5945                low                    stop   1
## 5946                low            unemployment   1
## 5947              lower                   based   1
## 5948              lower                   crime   1
## 5949              lower                  priced   1
## 5950              lower                  prices   1
## 5951            lowered                   taxes   1
## 5952           lowering                   taxes   1
## 5953             lowest                 african   1
## 5954             lowest                    drug   1
## 5955             lowest                  female   1
## 5956             lowest                  levels   1
## 5957             lowest                    rate   1
## 5958             lowest                   rated   1
## 5959            lowlife             christopher   1
## 5960              lowly                   rated   1
## 5961              loyal                citizens   1
## 5962                 lt                     gov   1
## 5963                 lt                governor   1
## 5964               luck                godspeed   1
## 5965               luck                    mary   1
## 5966              lucky                   cnn’s   1
## 5967           luncheon                  hosted   1
## 5968             luther                    king   1
## 5969          luxurious                 private   1
## 5970              lying                   james   1
## 5971              lying                 machine   1
## 5972              lynch                  mccabe   1
## 5973              lynch                   trump   1
## 5974            machine                    guns   1
## 5975             macron                suggests   1
## 5976                mad                politics   1
## 5977      madeinamerica                showcase   1
## 5978            madison                  square   1
## 5979               maga                  agenda   1
## 5980               maga                  border   1
## 5981               maga                     hat   1
## 5982               maga             jobsnotmobs   1
## 5983               maga                  strong   1
## 5984               maga                 tickets   1
## 5985               maga                   total   1
## 5986              magic                    3000   1
## 5987              magic                  coming   1
## 5988              magic                   trump   1
## 5989        magnificent                 tribute   1
## 5990        magnificent                  winter   1
## 5991               main                    goal   1
## 5992               main                 reasons   1
## 5993         mainstream                    fake   1
## 5994           maintain                  strong   1
## 5995              major              bipartisan   1
## 5996              major                  border   1
## 5997              major                business   1
## 5998              major                  chance   1
## 5999              major           confrontation   1
## 6000              major                 counter   1
## 6001              major                 country   1
## 6002              major                  crimes   1
## 6003              major              difference   1
## 6004              major                disaster   1
## 6005              major                  effort   1
## 6006              major                elements   1
## 6007              major               hindrance   1
## 6008              major                    john   1
## 6009              major                     lie   1
## 6010              major                    loss   1
## 6011              major                    matt   1
## 6012              major                 players   1
## 6013              major              priorities   1
## 6014              major                   rally   1
## 6015              major                  source   1
## 6016              major                     spy   1
## 6017              major                   steps   1
## 6018              major                 tariffs   1
## 6019              major                    test   1
## 6020              major                   trade   1
## 6021              major                     u.s   1
## 6022              major                 victory   1
## 6023              major                    wall   1
## 6024             majors                   ahead   1
## 6025              maker                     bob   1
## 6026              makes               excellent   1
## 6027              makes                   money   1
## 6028              makes                   sense   1
## 6029          makeshift                   walls   1
## 6030           manafort               political   1
## 6031         management                  budget   1
## 6032            manager                   takes   1
## 6033           mandated                 comment   1
## 6034      manufacturers                 reduces   1
## 6035      manufacturing                 growing   1
## 6036      manufacturing                   moves   1
## 6037               marc                   elias   1
## 6038               marc                   short   1
## 6039            marcelo                  rebelo   1
## 6040              march                      13   1
## 6041              march                    2018   1
## 6042              march                      25   1
## 6043              march                     6th   1
## 6044           margaret                kenyatta   1
## 6045             marine                aircraft   1
## 6046             marine                    band   1
## 6047               mark                 burnett   1
## 6048               mark                  milley   1
## 6049               mark                    penn   1
## 6050               mark                   rutte   1
## 6051             market         congratulations   1
## 6052             market            facilitation   1
## 6053             market                    hits   1
## 6054             market                    rate   1
## 6055             market                  strong   1
## 6056            markets                    jobs   1
## 6057              marks                    4yrs   1
## 6058             marsha               blackburn   1
## 6059           marshall                  county   1
## 6060             martin                  luther   1
## 6061               mary                   barra   1
## 6062               mary                 matalin   1
## 6063           maryland         congratulations   1
## 6064               mass               migration   1
## 6065               mass                  murder   1
## 6066            massive                     100   1
## 6067            massive                  amount   1
## 6068            massive                 chinese   1
## 6069            massive               conflicts   1
## 6070            massive                   crowd   1
## 6071            massive                  crowds   1
## 6072            massive                    cuts   1
## 6073            massive                 cutting   1
## 6074            massive                  deadly   1
## 6075            massive                    fisa   1
## 6076            massive                 foreign   1
## 6077            massive                     i.p   1
## 6078            massive               magarally   1
## 6079            massive                overflow   1
## 6080            massive                     p.m   1
## 6081            massive              regulation   1
## 6082            massive              relocation   1
## 6083            massive                   surge   1
## 6084            massive                 totally   1
## 6085          massively                     cut   1
## 6086          massively                infected   1
## 6087             master                   chief   1
## 6088             master                     sgt   1
## 6089            masters                champion   1
## 6090            masters                     win   1
## 6091              match               electoral   1
## 6092           material               including   1
## 6093               matt                   gaetz   1
## 6094               matt                golsteyn   1
## 6095               matt                 schlapp   1
## 6096               matt                whitaker   1
## 6097             matter                 answers   1
## 6098             mattis                    book   1
## 6099             mattis                   calls   1
## 6100             mattis                   nukes   1
## 6101           mauricio                   macri   1
## 6102            maximum                  border   1
## 6103            maximum                criminal   1
## 6104            maximum                  effort   1
## 6105            maximum               penalties   1
## 6106            maximum               sanctions   1
## 6107              mayor                  gillum   1
## 6108              mayor                   named   1
## 6109             mccabe                 clinton   1
## 6110             mccabe                   fired   1
## 6111             mccabe                    lisa   1
## 6112             mccabe                   peter   1
## 6113             mccabe                  report   1
## 6114             mccabe                    text   1
## 6115             mccabe                    wife   1
## 6116           mccabe’s                 700,000   1
## 6117           mccabe’s                    wife   1
## 6118            mccabes                    wife   1
## 6119           mccarthy                     era   1
## 6120           mccarthy                   style   1
## 6121          mcconnell               announced   1
## 6122           mcdaniel                      32   1
## 6123           mcdaniel                 oversaw   1
## 6124         mcgahn.the                    fake   1
## 6125           mckenzie                   arena   1
## 6126           mcmaster                  forgot   1
## 6127           mcmaster                   henry   1
## 6128           mcmaster                   loves   1
## 6129           mcmaster                   north   1
## 6130           mcmaster                   rally   1
## 6131           mcmaster                speaking   1
## 6132            mcsally                 running   1
## 6133         meaningful                    halt   1
## 6134         meaningful                    jobs   1
## 6135         meaningful                  summit   1
## 6136              means                   lying   1
## 6137              means                  safety   1
## 6138           meantime                   witch   1
## 6139              media                  builds   1
## 6140              media                contacts   1
## 6141              media            continuously   1
## 6142              media                 coverup   1
## 6143              media                 doesn’t   1
## 6144              media                  driven   1
## 6145              media             embarrassed   1
## 6146              media                  giants   1
## 6147              media                 ignores   1
## 6148              media                    leak   1
## 6149              media                   loves   1
## 6150              media                 melania   1
## 6151              media               narrative   1
## 6152              media                    nato   1
## 6153              media                     org   1
## 6154              media                 outlets   1
## 6155              media                  refuse   1
## 6156              media                 reseach   1
## 6157              media                 shortly   1
## 6158             median                  income   1
## 6159            medical                    care   1
## 6160            medical           professionals   1
## 6161           medicare               advantage   1
## 6162           medicare                    cast   1
## 6163           mediocre                  career   1
## 6164             medium                    size   1
## 6165               meet                   don’t   1
## 6166               meet                 iranian   1
## 6167               meet                   prime   1
## 6168            meeting                    nato   1
## 6169            meeting                     son   1
## 6170            meeting                tomorrow   1
## 6171            meeting                 tonight   1
## 6172           meetings                   calls   1
## 6173           meetings               scheduled   1
## 6174           meetings                    unga   1
## 6175            melania               g20summit   1
## 6176            melania             neverforget   1
## 6177            melania              successful   1
## 6178          melania’s                  jacket   1
## 6179               memo                     fbi   1
## 6180               memo                released   1
## 6181               memo                response   1
## 6182               memo                 totally   1
## 6183           memorial                 service   1
## 6184              memos                   comey   1
## 6185              memos                mccabe’s   1
## 6186             mental                capacity   1
## 6187             mental               condition   1
## 6188             mental                  health   1
## 6189           mentally               disturbed   1
## 6190           mentally                retarded   1
## 6191         mentioning                   enemy   1
## 6192               mere              allegation   1
## 6193              merry               christmas   1
## 6194               mesa                honoring   1
## 6195           messages                 privacy   1
## 6196                met                    john   1
## 6197                met                  that’s   1
## 6198            mexican                 friends   1
## 6199            mexican                  people   1
## 6200            mexican               president   1
## 6201            mexican                soldiers   1
## 6202             mexico                   china   1
## 6203             mexico                   don’t   1
## 6204             mexico                 focuses   1
## 6205             mexico                   makes   1
## 6206             mexico                   trade   1
## 6207           mexico’s                 exports   1
## 6208           mexico’s                  murder   1
## 6209           mexico’s                  police   1
## 6210             meyers                    weak   1
## 6211                mia             recognition   1
## 6212            michael                   anton   1
## 6213            michael                 flynn’s   1
## 6214            michael                 goodwin   1
## 6215            michael                 mukasey   1
## 6216            michael                   waltz   1
## 6217           michaels                 cohen’s   1
## 6218           michelle                    wolf   1
## 6219           michigan                   house   1
## 6220           michigan                    lots   1
## 6221           michigan                maryland   1
## 6222           michigan                 tonight   1
## 6223                mid                     air   1
## 6224             middle                   class   1
## 6225             middle              easterners   1
## 6226            midterm                   issue   1
## 6227            midterm                 results   1
## 6228           midterms                 goodbye   1
## 6229           midterms                   races   1
## 6230           midterms               yesterday   1
## 6231             mighty                struggle   1
## 6232            migrant                 caravan   1
## 6233          migration                 cancels   1
## 6234               mika              brzezinski   1
## 6235               mike                    asap   1
## 6236               mike                  dewine   1
## 6237           military                     716   1
## 6238           military                  border   1
## 6239           military                  budget   1
## 6240           military                 careers   1
## 6241           military              commitment   1
## 6242           military                   crime   1
## 6243           military                   deals   1
## 6244           military                  didn’t   1
## 6245           military                families   1
## 6246           military                 fighter   1
## 6247           military                    hero   1
## 6248           military                 hostage   1
## 6249           military                 leaders   1
## 6250           military                   lines   1
## 6251           military                  parade   1
## 6252           military            participants   1
## 6253           military                     pay   1
## 6254           military                   sadly   1
## 6255           military                security   1
## 6256           military                 setting   1
## 6257           military                straight   1
## 6258           military                strength   1
## 6259           military                    term   1
## 6260           military                    time   1
## 6261           military                veterans   1
## 6262           military                    vote   1
## 6263             milley                   chief   1
## 6264            million                       2   1
## 6265            million               americans   1
## 6266            million                 brought   1
## 6267            million         congratulations   1
## 6268            million                 dollars   1
## 6269            million                    hard   1
## 6270            million                innocent   1
## 6271            million                    jews   1
## 6272            million                   pages   1
## 6273            million                   phone   1
## 6274            million                  pounds   1
## 6275            million                   spent   1
## 6276            million                     ton   1
## 6277            million                 workers   1
## 6278           millions                millions   1
## 6279          milwaukee               wisconsin   1
## 6280               mind                exploded   1
## 6281           mindless                chemical   1
## 6282               mine         congratulations   1
## 6283            minions               including   1
## 6284           minister                benjamin   1
## 6285           minister                     lee   1
## 6286           minister                     leo   1
## 6287           minister                    mark   1
## 6288           minister                   scott   1
## 6289           minister                varadkar   1
## 6290          minnesota                    vote   1
## 6291           minority              employment   1
## 6292              minus                       4   1
## 6293            minutes                 tonight   1
## 6294       miraculously                 started   1
## 6295               miss                meetings   1
## 6296            missile                   bases   1
## 6297            missile                    test   1
## 6298            missile                 testing   1
## 6299           missiles                   fired   1
## 6300           missiles                    shot   1
## 6301           missiles                   theme   1
## 6302            missing                     dnc   1
## 6303            missing                  emails   1
## 6304            missing                  fallen   1
## 6305            missing                 sailors   1
## 6306            missing                    text   1
## 6307        mississippi                    vote   1
## 6308             missle                launches   1
## 6309           missouri                    flew   1
## 6310           missouri                    josh   1
## 6311           missouri                    left   1
## 6312           missouri               magarally   1
## 6313           missouri                    vote   1
## 6314      misstatements                    lies   1
## 6315      misstatements                     sad   1
## 6316           missteps                   comey   1
## 6317            mistake                  sloppy   1
## 6318         mistakenly                   tweet   1
## 6319               mitt                  romney   1
## 6320              mlk50            proclamation   1
## 6321            mnuchin                   larry   1
## 6322                mob                    boss   1
## 6323                mob               democrats   1
## 6324                mob                    vote   1
## 6325             modern                american   1
## 6326             modern                   times   1
## 6327      modernization                     act   1
## 6328             moines                register   1
## 6329              molly                   comey   1
## 6330            moments                     ago   1
## 6331           momentum                 greatly   1
## 6332             monday                  assume   1
## 6333             monday                 meeting   1
## 6334           monetary                barriers   1
## 6335           monetary                   trade   1
## 6336              money                  coming   1
## 6337              money                    fuel   1
## 6338              money           investigating   1
## 6339              money                  losing   1
## 6340              money                    lost   1
## 6341              money                  pretty   1
## 6342              money                   spent   1
## 6343              money                  wasted   1
## 6344            monster                 ratings   1
## 6345            monster                   story   1
## 6346            montana               magarally   1
## 6347            montana                    matt   1
## 6348              month          administration   1
## 6349              month                   ahead   1
## 6350              month                    drug   1
## 6351              month                  system   1
## 6352            monthly                retainer   1
## 6353             months                  lowest   1
## 6354             months                   worth   1
## 6355               moon                     jae   1
## 6356           moonbeam                   brown   1
## 6357             morgan                   chase   1
## 6358            morning                building   1
## 6359            morning               discussed   1
## 6360            morning                     joe   1
## 6361            morning                   radio   1
## 6362            morning                 ratings   1
## 6363           mornings                   train   1
## 6364           mortgage                    paid   1
## 6365           mother’s                     day   1
## 6366              motor                   cycle   1
## 6367              motto                  resist   1
## 6368          mountains              wastelands   1
## 6369               move                 quickly   1
## 6370               move                   sales   1
## 6371               move                     u.s   1
## 6372               move                   watch   1
## 6373           movement                 marches   1
## 6374              moves                overseas   1
## 6375             moving                    fast   1
## 6376             moving                 forward   1
## 6377             moving              operations   1
## 6378             moving                 rapidly   1
## 6379            mueller                  andrew   1
## 6380            mueller             appointment   1
## 6381            mueller                   comey   1
## 6382            mueller                    gang   1
## 6383            mueller                   isn’t   1
## 6384            mueller               operation   1
## 6385            mueller                   probe   1
## 6386            mueller                 special   1
## 6387            mueller                   staff   1
## 6388            mueller                  unlike   1
## 6389          mueller’s                   angry   1
## 6390           multiple              fatalities   1
## 6391           multiple                 injured   1
## 6392           multiple                   media   1
## 6393           multiple                  people   1
## 6394           multiple                 sources   1
## 6395           mulvaney                director   1
## 6396             mumbai                  terror   1
## 6397             murder                    rate   1
## 6398               murl                  conner   1
## 6399              music             celebrating   1
## 6400                n.y                   times   1
## 6401              nafta                 greatly   1
## 6402              naive                    wall   1
## 6403              named                       9   1
## 6404              named                  acting   1
## 6405              named                  andrew   1
## 6406              named                  maggie   1
## 6407              nancy                    call   1
## 6408              nancy                standing   1
## 6409               nang                    dick   1
## 6410               nang                   dicks   1
## 6411               nash                  county   1
## 6412              nasty             contentious   1
## 6413              nasty                    laws   1
## 6414              nasty                    term   1
## 6415              nasty                   world   1
## 6416             nation             appreciates   1
## 6417             nation         congratulations   1
## 6418             nation                  denies   1
## 6419             nation                    lost   1
## 6420             nation                     run   1
## 6421             nation                    safe   1
## 6422             nation                    torn   1
## 6423             nation               unchecked   1
## 6424           nation’s               crumbling   1
## 6425           nation’s                defenses   1
## 6426           nation’s                 eternal   1
## 6427           nation’s               governors   1
## 6428           nation’s                    loss   1
## 6429           nation’s                   motto   1
## 6430           nation’s                   newly   1
## 6431           national             association   1
## 6432           national              biodefense   1
## 6433           national                champion   1
## 6434           national               champions   1
## 6435           national               committee   1
## 6436           national                     day   1
## 6437           national                disgrace   1
## 6438           national                economic   1
## 6439           national               emergency   1
## 6440           national                  emergy   1
## 6441           national                  family   1
## 6442           national                    hero   1
## 6443           national            independence   1
## 6444           national                    left   1
## 6445           national         medalofhonorday   1
## 6446           national                     pow   1
## 6447           national                  prayer   1
## 6448           national            prescription   1
## 6449           national                strategy   1
## 6450           national               targeting   1
## 6451           national                    wage   1
## 6452            nations                 friends   1
## 6453            nations                   japan   1
## 6454            nations nationalprayerbreakfast   1
## 6455            nations                security   1
## 6456         nationwide              disapprove   1
## 6457         nationwide                 revival   1
## 6458               nato                benefits   1
## 6459               nato                billions   1
## 6460               nato                 germany   1
## 6461               nato              protecting   1
## 6462               nato                 raising   1
## 6463               nato               secretary   1
## 6464     natosummit2018                   press   1
## 6465            natural                     gas   1
## 6466            natural              protection   1
## 6467             nauert             spokeswoman   1
## 6468              naval                 academy   1
## 6469          navigator               celebrate   1
## 6470               navy                    game   1
## 6471               navy                   seals   1
## 6472               nazi                genocide   1
## 6473                nbc                     abc   1
## 6474                nbc                democrat   1
## 6475                nbc                    fake   1
## 6476               ncaa                football   1
## 6477               neal                    dunn   1
## 6478            nearing                  record   1
## 6479           nebraska                    vote   1
## 6480           needless                    pain   1
## 6481           needless                spending   1
## 6482           negative                    fake   1
## 6483           negative                  impact   1
## 6484           negative                pressure   1
## 6485           negative                   quote   1
## 6486           negative                 stories   1
## 6487          negotiate                    fair   1
## 6488         negotiated                    iran   1
## 6489         negotiated                 nuclear   1
## 6490        negotiating                   china   1
## 6491        negotiating                   table   1
## 6492       negotiations                   begin   1
## 6493       negotiations                    john   1
## 6494               neil                   irwin   1
## 6495             nellie                     ohr   1
## 6496              nelly                   ohr’s   1
## 6497             nelson                    call   1
## 6498             nelson                 concede   1
## 6499             nelson                conceded   1
## 6500             nelson                  didn’t   1
## 6501            nervous                    mess   1
## 6502            nervous                reliever   1
## 6503             nevada                    adam   1
## 6504             nevada                   danny   1
## 6505         neveragain holocaustremembranceday   1
## 6506           newfound                  wealth   1
## 6507              newly                   built   1
## 6508              newly                   found   1
## 6509              newly             inaugurated   1
## 6510               news              accurately   1
## 6511               news                business   1
## 6512               news                  coming   1
## 6513               news              constantly   1
## 6514               news               correctly   1
## 6515               news                   don’t   1
## 6516               news                    fire   1
## 6517               news                   hates   1
## 6518               news             incorrectly   1
## 6519               news               inflation   1
## 6520               news                    it’s   1
## 6521               news                   legal   1
## 6522               news                   likes   1
## 6523               news                    maga   1
## 6524               news              mainstream   1
## 6525               news                 pushing   1
## 6526               news                 ratings   1
## 6527               news               reporters   1
## 6528               news                 stories   1
## 6529               news                  voters   1
## 6530               news                 winners   1
## 6531               news                   witch   1
## 6532          newspaper                industry   1
## 6533                nfl                    game   1
## 6534                nfl                national   1
## 6535                nfl                 players   1
## 6536               nice             compliments   1
## 6537               nice             distinction   1
## 6538               nice                    fast   1
## 6539               nice                     guy   1
## 6540               nice                    guys   1
## 6541               nice                language   1
## 6542               nice                  letter   1
## 6543               nice                    note   1
## 6544             nicely             autoworkers   1
## 6545             nicely                     pay   1
## 6546             nicely               yesterday   1
## 6547           nicholas                  fandos   1
## 6548               nick                   ayers   1
## 6549              night                    beto   1
## 6550              night               including   1
## 6551              night                  packed   1
## 6552              night              tremendous   1
## 6553              night                     wow   1
## 6554             nights                     car   1
## 6555               nike                thinking   1
## 6556              ninth                   month   1
## 6557              nixon               watergate   1
## 6558        noblesville                 indiana   1
## 6559           nominate                  highly   1
## 6560           nominate                   judge   1
## 6561        nominations                hundreds   1
## 6562        nominations               including   1
## 6563        nominations                   worst   1
## 6564            nominee                   judge   1
## 6565        nonpartisan                enforcer   1
## 6566             normal                starting   1
## 6567              north                dakota’s   1
## 6568              north                 korea’s   1
## 6569              north                  korean   1
## 6570              north                 koreans   1
## 6571              north                   south   1
## 6572             notice                  timing   1
## 6573           november                    2000   1
## 6574           november                      28   1
## 6575           november                     6th   1
## 6576           november                    bill   1
## 6577           november                   can’t   1
## 6578           november               democrats   1
## 6579           november                    dems   1
## 6580           november                    pete   1
## 6581                nra                 doesn’t   1
## 6582                nsa              contractor   1
## 6583            nuclear                     bad   1
## 6584            nuclear             catastrophe   1
## 6585            nuclear             inspections   1
## 6586            nuclear                  powers   1
## 6587            nuclear                  threat   1
## 6588            nuclear                     war   1
## 6589              nukes                woodward   1
## 6590           numerous                  delays   1
## 6591           numerous                   legal   1
## 6592           numerous               occasions   1
## 6593           numerous                  people   1
## 6594           numerous                 players   1
## 6595           numerous                   times   1
## 6596           numerous               victories   1
## 6597          nursultan              nazarbayev   1
## 6598                 ny                   times   1
## 6599              obama                     100   1
## 6600              obama         administrations   1
## 6601              obama                    bush   1
## 6602              obama                  called   1
## 6603              obama                   comey   1
## 6604              obama              department   1
## 6605              obama                    fake   1
## 6606              obama                     fbi   1
## 6607              obama                    fire   1
## 6608              obama                    gang   1
## 6609              obama                     guy   1
## 6610              obama                    held   1
## 6611              obama                    joke   1
## 6612              obama                  judges   1
## 6613              obama                 mueller   1
## 6614              obama              negotiated   1
## 6615              obama                  people   1
## 6616              obama               president   1
## 6617              obama                   quote   1
## 6618              obama               rasmussen   1
## 6619              obama                 schumer   1
## 6620              obama               separated   1
## 6621              obama              seperation   1
## 6622              obama                  spying   1
## 6623              obama                  talked   1
## 6624              obama                     w.h   1
## 6625              obama                   we’ve   1
## 6626              obama                   white   1
## 6627            obama's                   score   1
## 6628            obama’s                    term   1
## 6629            obama’s                   watch   1
## 6630           obsolete                    laws   1
## 6631           obsolete                   nasty   1
## 6632           obsolete                    term   1
## 6633           obstruct                   cryin   1
## 6634           obstruct                 justice   1
## 6635           obstruct                  resist   1
## 6636           obstruct                    vote   1
## 6637         obstructed                 justice   1
## 6638        obstructing                     law   1
## 6639        obstructing                remember   1
## 6640        obstruction                  claims   1
## 6641        obstruction                     sad   1
## 6642        obstruction                 senator   1
## 6643        obstruction                   witch   1
## 6644        obstruction                   worst   1
## 6645             obtain            compromising   1
## 6646            obvious               hostility   1
## 6647              ocean                    city   1
## 6648            october                    2000   1
## 6649            october                   cable   1
## 6650            october                     i’m   1
## 6651            october               officials   1
## 6652          october’s                  record   1
## 6653           offended                millions   1
## 6654           offenses            constitution   1
## 6655          offensive                 defense   1
## 6656              offer             condolences   1
## 6657            offered                    daca   1
## 6658             office        hurricanemichael   1
## 6659             office             jobsnotmobs   1
## 6660             office                   makes   1
## 6661             office                 massive   1
## 6662             office                  people   1
## 6663             office                    scam   1
## 6664             office                 tonight   1
## 6665             office                    vote   1
## 6666            officer                    died   1
## 6667            officer              suggesting   1
## 6668            officer                    trey   1
## 6669           officers               extremist   1
## 6670           officers                military   1
## 6671           officers                    race   1
## 6672           official                  andrew   1
## 6673           official                   bruce   1
## 6674           official                 contact   1
## 6675           official                 phillip   1
## 6676         officially                  echoed   1
## 6677         officially                   sworn   1
## 6678         officially                tomorrow   1
## 6679          officials                    told   1
## 6680               ohio                    mike   1
## 6681               ohio                    vote   1
## 6682             ohio’s                    12th   1
## 6683                ohr                   bruce   1
## 6684                ohr                   doj’s   1
## 6685                ohr                    fisa   1
## 6686                ohr                     ohr   1
## 6687                ohr                    told   1
## 6688                ohr                   wrote   1
## 6689              ohr’s                    bank   1
## 6690              ohr’s              connection   1
## 6691                oil                   flows   1
## 6692           oklahoma                    city   1
## 6693           oklahoma                   kevin   1
## 6694                 ol               fashioned   1
## 6695           oligarch               catherine   1
## 6696           oligarch                  warner   1
## 6697            ominous             alternative   1
## 6698            omnibus               situation   1
## 6699            ongoing                   fight   1
## 6700            ongoing            negotiations   1
## 6701            ongoing                   trial   1
## 6702             online               retailers   1
## 6703          onslaught                   loves   1
## 6704                 op                      ed   1
## 6705           openings             astonishing   1
## 6706           openings                     hit   1
## 6707             openly                 defying   1
## 6708             openly                  stated   1
## 6709          operative                  notice   1
## 6710          operative                   prior   1
## 6711          operative                  reagan   1
## 6712           operator                   britt   1
## 6713            opinion                   don’t   1
## 6714            opinion                   piece   1
## 6715            opinion                   serve   1
## 6716             opioid                epidemic   1
## 6717             opioid                 scourge   1
## 6718             opioid                  summit   1
## 6719           opponent                     bob   1
## 6720           opponent              controlled   1
## 6721           opponent                   jared   1
## 6722           opponent                    kris   1
## 6723           opponent                    lamb   1
## 6724           opponent                  lifted   1
## 6725           opponent                    runs   1
## 6726           opponent                 totally   1
## 6727          opponents                   don’t   1
## 6728      opportunities                   wef18   1
## 6729        opportunity                    lies   1
## 6730        opportunity                   march   1
## 6731           opposing               campaigns   1
## 6732           opposing                 party’s   1
## 6733           opposing                    view   1
## 6734           opposite             disgraceful   1
## 6735              oprah                    runs   1
## 6736              oprah                 winfrey   1
## 6737           optimism                   soars   1
## 6738             orange                  county   1
## 6739             orator                outlines   1
## 6740           original               countries   1
## 6741           original                fighters   1
## 6742           original               supporter   1
## 6743         originally                  headed   1
## 6744          originals                 written   1
## 6745        originating               countries   1
## 6746              osama                     bin   1
## 6747           outdated             immigration   1
## 6748           outdated                programs   1
## 6749             output           substantially   1
## 6750         outrageous                   chris   1
## 6751        outstanding                  acting   1
## 6752        outstanding                  family   1
## 6753        outstanding                  unpaid   1
## 6754           overflow                   crowd   1
## 6755            oversaw                 history   1
## 6756           overseas                  donald   1
## 6757              overt                    bias   1
## 6758          overtaxed                    mess   1
## 6759         overturned                       9   1
## 6760     overwhelmingly                  passed   1
## 6761             owners                    plan   1
## 6762                p.m                  justin   1
## 6763                p.m                 meeting   1
## 6764                p.m                    vote   1
## 6765                p.o               increased   1
## 6766                p.o                 leaders   1
## 6767               pace                    vote   1
## 6768            package                   we’ve   1
## 6769             packed                   arena   1
## 6770             packed                   house   1
## 6771               page                answered   1
## 6772               page                    fisa   1
## 6773               page                    it’s   1
## 6774               page                    memo   1
## 6775               page               testimony   1
## 6776               page                  wasn’t   1
## 6777               page               yesterday   1
## 6778               paid                      33   1
## 6779               paid                     d.c   1
## 6780               paid                 mccabes   1
## 6781               paid                pakistan   1
## 6782               paid            professional   1
## 6783               paid           professionals   1
## 6784               paid               screamers   1
## 6785              paint                     job   1
## 6786           pakistan                billions   1
## 6787          pakistani               fraudster   1
## 6788          pakistani                 mystery   1
## 6789              paper                   loses   1
## 6790              paper                   trail   1
## 6791             papers               documents   1
## 6792             parcel                   rates   1
## 6793           pardoned                       5   1
## 6794              paris           commemorating   1
## 6795              paris                  parade   1
## 6796              paris                protests   1
## 6797              paris                shutdown   1
## 6798           parkland                      fl   1
## 6799           parkland                 florida   1
## 6800           parkland               survivors   1
## 6801        participate                saturday   1
## 6802           partisan          investigations   1
## 6803           partisan               political   1
## 6804           partisan                  stance   1
## 6805          partisans                  coming   1
## 6806           partners               continues   1
## 6807              party                    cast   1
## 6808              party                  change   1
## 6809              party                 country   1
## 6810              party                   don’t   1
## 6811              party            favorability   1
## 6812              party                  future   1
## 6813              party                  hatred   1
## 6814              party             jobsnotmobs   1
## 6815              party                     led   1
## 6816              party                    line   1
## 6817              party                  maxine   1
## 6818              party                movement   1
## 6819              party                    troy   1
## 6820              party                     wow   1
## 6821            party’s              california   1
## 6822            party’s                campaign   1
## 6823            party’s                 chances   1
## 6824               pass                  border   1
## 6825               pass              government   1
## 6826               pass                     gun   1
## 6827               pass               judgement   1
## 6828               pass             legislation   1
## 6829               pass                   smart   1
## 6830               pass                  strong   1
## 6831               pass                     tax   1
## 6832             passed                     tax   1
## 6833            passing                     day   1
## 6834               past                      16   1
## 6835               past          administration   1
## 6836               past                  hosted   1
## 6837               past            negotiations   1
## 6838               past                   obama   1
## 6839               past                  record   1
## 6840             pastor                 praises   1
## 6841           pathetic             immigration   1
## 6842       pathetically                    weak   1
## 6843            patient                    maga   1
## 6844           patients   americanpatientsfirst   1
## 6845           patients                   don’t   1
## 6846            patrick                    reed   1
## 6847            patriot                  highly   1
## 6848            patriot                 hostage   1
## 6849            patriot                    matt   1
## 6850           patriots                 alabama   1
## 6851           patriots                   loyal   1
## 6852             patrol                officers   1
## 6853             patrol                troopers   1
## 6854               paul                    cook   1
## 6855               paul                  kagame   1
## 6856              pause                  people   1
## 6857                pay                       2   1
## 6858                pay                       4   1
## 6859                pay                hundreds   1
## 6860                pay                pakistan   1
## 6861                pay                   raise   1
## 6862                pay                  raises   1
## 6863                pay                    rate   1
## 6864                pay                    real   1
## 6865             paying                       1   1
## 6866             paying                    jobs   1
## 6867             paying               retailers   1
## 6868             paying                   soooo   1
## 6869             paying                  stores   1
## 6870             paying                     u.s   1
## 6871             payoff                     101   1
## 6872           payrolls                    boom   1
## 6873               pays                       1   1
## 6874               pays                     4.3   1
## 6875               pays                   close   1
## 6876               pays                    tens   1
## 6877              peace                   billy   1
## 6878              peace                   house   1
## 6879              peace                   north   1
## 6880              peace         singaporesummit   1
## 6881           peaceful              successful   1
## 6882            peanuts                compared   1
## 6883              pearl                  harbor   1
## 6884             pelosi                    andy   1
## 6885             pelosi              controlled   1
## 6886             pelosi                democrat   1
## 6887             pelosi                    dems   1
## 6888             pelosi                deserves   1
## 6889             pelosi               elizabeth   1
## 6890             pelosi                    gain   1
## 6891             pelosi                   keith   1
## 6892             pelosi                     run   1
## 6893             pelosi                 schumer   1
## 6894             pelosi                  voting   1
## 6895             pelosi                   wacko   1
## 6896             pelosi                  waters   1
## 6897           pelosi’s                   dream   1
## 6898          penalties                 allowed   1
## 6899          penalties                   wrong   1
## 6900              pence                   we’ll   1
## 6901       pennsylvania               challenge   1
## 6902       pennsylvania                   keith   1
## 6903       pennsylvania                     law   1
## 6904       pennsylvania                   loves   1
## 6905       pennsylvania                remember   1
## 6906       pennsylvania                tomorrow   1
## 6907       pennsylvania                 tonight   1
## 6908          pensacola                 florida   1
## 6909             people                addicted   1
## 6910             people                approved   1
## 6911             people                 attacks   1
## 6912             people                   badly   1
## 6913             people                  border   1
## 6914             people            buildthewall   1
## 6915             people                    call   1
## 6916             people                   can’t   1
## 6917             people                climbing   1
## 6918             people                 closely   1
## 6919             people         congratulations   1
## 6920             people                 covered   1
## 6921             people                   cross   1
## 6922             people                 deserve   1
## 6923             people              devastated   1
## 6924             people                     die   1
## 6925             people                   enjoy   1
## 6926             people                   enter   1
## 6927             people                    fake   1
## 6928             people                    flee   1
## 6929             people                   flows   1
## 6930             people                  fought   1
## 6931             people                    hate   1
## 6932             people                 heading   1
## 6933             people                 honesty   1
## 6934             people                horribly   1
## 6935             people                    hurt   1
## 6936             people               illegally   1
## 6937             people                  inside   1
## 6938             people                     joe   1
## 6939             people                    left   1
## 6940             people                 liberal   1
## 6941             people                    live   1
## 6942             people                    love   1
## 6943             people                  mollie   1
## 6944             people                   ready   1
## 6945             people                 ruining   1
## 6946             people                     sad   1
## 6947             people                    save   1
## 6948             people                  scream   1
## 6949             people                   shana   1
## 6950             people                snipping   1
## 6951             people                   spies   1
## 6952             people                   storm   1
## 6953             people             surrounding   1
## 6954             people                  tuning   1
## 6955             people                 watched   1
## 6956             people                   wrong   1
## 6957           people’s                republic   1
## 6958            peoples                   lives   1
## 6959          perceived                negative   1
## 6960            perfect                     day   1
## 6961          perfectly                 carried   1
## 6962          perfectly                executed   1
## 6963          perfectly                   legal   1
## 6964        performance                  stated   1
## 6965              peril               violators   1
## 6966           perished                      77   1
## 6967          permanent                     law   1
## 6968          permanent             replacement   1
## 6969        permanently               dismantle   1
## 6970        permanently               separated   1
## 6971             person                     a.g   1
## 6972             person                    died   1
## 6973             person               illegally   1
## 6974             person                 leading   1
## 6975             person            representing   1
## 6976           personal                 loyalty   1
## 6977           personal                 medical   1
## 6978               pete                sessions   1
## 6979               pete                 stauber   1
## 6980               pete                tomorrow   1
## 6981              peter                 ferrara   1
## 6982              peter                  morici   1
## 6983              peter                 navarro   1
## 6984          petterson                    dave   1
## 6985                pfc                 william   1
## 6986             pfizer                     ceo   1
## 6987           pharmacy                 counter   1
## 6988         phenomenal                     law   1
## 6989               phil                  bryant   1
## 6990            phillip                    mudd   1
## 6991            phoenix                      va   1
## 6992              phone                    call   1
## 6993              phone                   calls   1
## 6994              phone                   skype   1
## 6995              phone                   story   1
## 6996              phony                   books   1
## 6997              phony               collusion   1
## 6998              phony             crime.there   1
## 6999              phony                democrat   1
## 7000              phony                   dirty   1
## 7001              phony               headlines   1
## 7002              phony           investigation   1
## 7003              phony                   issue   1
## 7004              phony                    josh   1
## 7005              phony                   memos   1
## 7006              phony                 secrets   1
## 7007              phony                  source   1
## 7008              phony                   trump   1
## 7009             photos                implying   1
## 7010             phrase                   enemy   1
## 7011           physical                 assault   1
## 7012               pick                 crooked   1
## 7013              picks                   don’t   1
## 7014              piggy                    bank   1
## 7015              pills                disposed   1
## 7016              pills                   visit   1
## 7017           pipeline                 dollars   1
## 7018         pittsburgh                penguins   1
## 7019         pittsburgh                    post   1
## 7020            placing              propaganda   1
## 7021             planet                   earth   1
## 7022            planned                  summit   1
## 7023           planning          infrastructure   1
## 7024              plans                disaster   1
## 7025              plans                  moving   1
## 7026              plant              operations   1
## 7027            plastic                    guns   1
## 7028               play                    bill   1
## 7029               play                    fair   1
## 7030               play                shutdown   1
## 7031           playbook                    call   1
## 7032             played           extraordinary   1
## 7033             player                     jim   1
## 7034            players                 decided   1
## 7035            players                   stood   1
## 7036              plead                  guilty   1
## 7037             pledge              neveragain   1
## 7038                 pm                  justin   1
## 7039         pocahontas                  that’s   1
## 7040            podesta                 brother   1
## 7041            podesta                 company   1
## 7042            podesta                 dossier   1
## 7043          poisonous               synthetic   1
## 7044             police                  arrive   1
## 7045             police              california   1
## 7046             police              department   1
## 7047             police                  heroes   1
## 7048             police                 officer   1
## 7049           policies                   black   1
## 7050           policies                caravans   1
## 7051           policies                 release   1
## 7052           policies                     set   1
## 7053             policy                 laughed   1
## 7054          political                  actors   1
## 7055          political                      ad   1
## 7056          political               advantage   1
## 7057          political                campaign   1
## 7058          political          considerations   1
## 7059          political              corruption   1
## 7060          political                  figure   1
## 7061          political                    foes   1
## 7062          political                  future   1
## 7063          political                    gain   1
## 7064          political                 history   1
## 7065          political                     hit   1
## 7066          political               influence   1
## 7067          political                movement   1
## 7068          political               necessity   1
## 7069          political               operative   1
## 7070          political                opponent   1
## 7071          political                  people   1
## 7072          political             prosecution   1
## 7073          political                  pundit   1
## 7074          political           ramifications   1
## 7075          political         representatives   1
## 7076          political                    risk   1
## 7077          political                 scandal   1
## 7078          political                 support   1
## 7079          political                 victory   1
## 7080        politically                 correct   1
## 7081         politician                  admits   1
## 7082         politician                bragging   1
## 7083         politician                   cuomo   1
## 7084        politicians                   don’t   1
## 7085           politics            helsinki2018   1
## 7086           politics                 keeping   1
## 7087               poll                 results   1
## 7088           pollster                    john   1
## 7089             pompeo                director   1
## 7090             pompeo                     met   1
## 7091             pompeo                returned   1
## 7092               poor                billions   1
## 7093               poor             electricity   1
## 7094               poor                     job   1
## 7095               poor              leadership   1
## 7096               poor                   marks   1
## 7097               poor                  public   1
## 7098             poorly                     run   1
## 7099             poorly                 written   1
## 7100            popular                  figure   1
## 7101            popular                     guy   1
## 7102            popular                     tax   1
## 7103             porous                  border   1
## 7104            portray                   chaos   1
## 7105           position                  highly   1
## 7106           positive            achievements   1
## 7107           positive                  change   1
## 7108           positive                  events   1
## 7109           positive              experience   1
## 7110           positive                  impact   1
## 7111           positive                 outlook   1
## 7112           positive                 records   1
## 7113           positive                 results   1
## 7114           positive               statement   1
## 7115           possibly                 illegal   1
## 7116               post                amazon’s   1
## 7117               post                election   1
## 7118               post               employees   1
## 7119               post                 gazette   1
## 7120               post                    poll   1
## 7121           potatoes                compared   1
## 7122          potential               collusion   1
## 7123          potential              corruption   1
## 7124          potential                    deal   1
## 7125          potential                   human   1
## 7126          potential                 nuclear   1
## 7127          potential              republican   1
## 7128          potential                   sicko   1
## 7129          potential                  voters   1
## 7130          potential                    west   1
## 7131        potentially                 massive   1
## 7132        potentially                millions   1
## 7133              pound                  genius   1
## 7134            pouring                    rain   1
## 7135                pow                     mia   1
## 7136              power                    game   1
## 7137              power                  that’s   1
## 7138              power                 they’ve   1
## 7139           powerful                    game   1
## 7140           powerful                  honest   1
## 7141           powerful                    mind   1
## 7142           powerful                   trade   1
## 7143           powerful           understanding   1
## 7144           powerful                   voice   1
## 7145           powerful                   words   1
## 7146             powers                 granted   1
## 7147             prayer               breakfast   1
## 7148                pre                   nafta   1
## 7149           precious                   child   1
## 7150        predecessor                     rex   1
## 7151        predecessor                   scott   1
## 7152          predicted         congratulations   1
## 7153        preliminary                 meeting   1
## 7154           prepared        hurricanemichael   1
## 7155               pres                   obama   1
## 7156               pres                 obama’s   1
## 7157       prescription                    drug   1
## 7158       prescription                   pills   1
## 7159          president                 _berset   1
## 7160          president                _erdogan   1
## 7161          president                     _lt   1
## 7162          president                     365   1
## 7163          president           administrator   1
## 7164          president                  barack   1
## 7165          president                  bashar   1
## 7166          president                believes   1
## 7167          president                    bush   1
## 7168          president                 clinton   1
## 7169          president                continue   1
## 7170          president                  daniel   1
## 7171          president                 doesn’t   1
## 7172          president                   elect   1
## 7173          president                  hassan   1
## 7174          president                    jean   1
## 7175          president               lithuania   1
## 7176          president                 marcelo   1
## 7177          president                mauricio   1
## 7178          president                    mike   1
## 7179          president              mirziyoyev   1
## 7180          president               nursultan   1
## 7181          president                    paul   1
## 7182          president                   pence   1
## 7183          president                  reagan   1
## 7184          president                 rouhani   1
## 7185          president                     run   1
## 7186          president                stunning   1
## 7187          president                 they’ve   1
## 7188          president                 trump's   1
## 7189          president                 trump’s   1
## 7190          president                vladimir   1
## 7191          president                   witch   1
## 7192        president's                    park   1
## 7193        president’s                 article   1
## 7194        president’s                     day   1
## 7195        president’s                 liberal   1
## 7196        president’s                national   1
## 7197        president’s              unfettered   1
## 7198       presidential                approval   1
## 7199       presidential                campaign   1
## 7200       presidential               historian   1
## 7201       presidential                  record   1
## 7202       presidential            truthfulness   1
## 7203         presidents                     fed   1
## 7204          presiding                   judge   1
## 7205              press                briefing   1
## 7206              press                   prove   1
## 7207            preston                    cope   1
## 7208             pretty                      ig   1
## 7209             pretty                    weak   1
## 7210            prevent                  donald   1
## 7211        preventable               tragedies   1
## 7212         prevention                     asa   1
## 7213           previous         administrations   1
## 7214           previous              hurricanes   1
## 7215           previous                     u.s   1
## 7216         previously                 dropped   1
## 7217         previously               scheduled   1
## 7218              price                   hikes   1
## 7219             priced                medicare   1
## 7220             prices                  coming   1
## 7221              pride                american   1
## 7222              pride                cpac2018   1
## 7223            primary                    doug   1
## 7224            primary                    form   1
## 7225            primary                     run   1
## 7226            primary                thinking   1
## 7227            primary                tomorrow   1
## 7228            primary                  topics   1
## 7229              prime                 minster   1
## 7230              prime                    time   1
## 7231           princess                 eugenie   1
## 7232           priority                    heed   1
## 7233             prison                sentence   1
## 7234             prison                    term   1
## 7235             prison                    time   1
## 7236            privacy              violations   1
## 7237            private               agreement   1
## 7238            private                business   1
## 7239            private                citizens   1
## 7240            private                contract   1
## 7241            private                   email   1
## 7242            private                     jet   1
## 7243            private                 meeting   1
## 7244            private                payrolls   1
## 7245            private                  sector   1
## 7246            private             transaction   1
## 7247                pro                   black   1
## 7248                pro                    iran   1
## 7249        proactively                    seek   1
## 7250            process                fairness   1
## 7251          proclaims                   april   1
## 7252          proclaims                 january   1
## 7253          proclaims                   march   1
## 7254          proclaims              unwavering   1
## 7255       proclamation              addressing   1
## 7256       proclamation                honoring   1
## 7257           producer                    mark   1
## 7258           produces                    dems   1
## 7259            product                  coming   1
## 7260            product             immediately   1
## 7261         production                     oil   1
## 7262         productive               bilateral   1
## 7263         productive           conversations   1
## 7264         productive                dialogue   1
## 7265         productive                meetings   1
## 7266         productive               statement   1
## 7267         productive                   talks   1
## 7268           products                  coming   1
## 7269       professional              protesters   1
## 7270          professor                    alan   1
## 7271            profile                 figures   1
## 7272           profound                   faith   1
## 7273           profound                question   1
## 7274     prognosticator                    bill   1
## 7275           prohibit                  grants   1
## 7276            project                   legal   1
## 7277            project                   witch   1
## 7278      proliferation                   cyber   1
## 7279          prominent              republican   1
## 7280          prominent             republicans   1
## 7281            promise                 keeping   1
## 7282            promote                american   1
## 7283            promote        religiousfreedom   1
## 7284         propaganda                     ads   1
## 7285         propaganda                 machine   1
## 7286             proper                  border   1
## 7287             proper                  credit   1
## 7288             proper                  forest   1
## 7289             proper                    form   1
## 7290           properly                 funding   1
## 7291           properly                  redone   1
## 7292           properly                  secure   1
## 7293           properly                utilized   1
## 7294        prosecuting                  jerome   1
## 7295         prosecutor                 counsel   1
## 7296      prosecutorial                    past   1
## 7297      prosecutorial                   power   1
## 7298         prosperous                 america   1
## 7299         prosperous                peaceful   1
## 7300            protect                 america   1
## 7301            protect               america’s   1
## 7302            protect                 brennan   1
## 7303            protect                   build   1
## 7304            protect                     ice   1
## 7305            protect                 illegal   1
## 7306            protect                     law   1
## 7307            protect               sanctuary   1
## 7308         protecting                 america   1
## 7309         protecting                 crooked   1
## 7310         protecting               democrats   1
## 7311         protecting                      ms   1
## 7312         protection                     act   1
## 7313         protection                  agency   1
## 7314         protection                national   1
## 7315           protects                  people   1
## 7316           protects                     pre   1
## 7317            protest                   stand   1
## 7318           protests                   don’t   1
## 7319              proud               americans   1
## 7320              proud             hardworking   1
## 7321              proud                  people   1
## 7322            proudly                  flying   1
## 7323            proudly                   stand   1
## 7324            proudly                  waving   1
## 7325              prove                 russian   1
## 7326             proven                  leaker   1
## 7327             proven                    liar   1
## 7328             proven                 targets   1
## 7329            provide                  hawaii   1
## 7330            provide                    jobs   1
## 7331           provided                historic   1
## 7332           provided            inconsistent   1
## 7333           provided             inspiration   1
## 7334          providing                   north   1
## 7335          providing                 support   1
## 7336            proving                   false   1
## 7337             public                   enemy   1
## 7338             public                 harvard   1
## 7339             public                likewise   1
## 7340             public                 opinion   1
## 7341             public                servants   1
## 7342             public                   space   1
## 7343             public                 speaker   1
## 7344             public             understands   1
## 7345         publicized                  charge   1
## 7346           publicly                 posting   1
## 7347              punch                   drunk   1
## 7348             pundit                    doug   1
## 7349            pundits                    love   1
## 7350            pundits                 talking   1
## 7351             puppet                  debbie   1
## 7352             puppet               petterson   1
## 7353             puppet                    weak   1
## 7354           purchase                     u.s   1
## 7355         purchasing            agricultural   1
## 7356               pure                 fiction   1
## 7357             purple                   heart   1
## 7358          purposely                 changed   1
## 7359          purposely                  didn’t   1
## 7360          purposely                   false   1
## 7361          purposely                   wrote   1
## 7362           purposes                congress   1
## 7363             pushed           congressional   1
## 7364            pushing           comprehensive   1
## 7365            pushing                    hard   1
## 7366            pushing                   nancy   1
## 7367            pushing                  people   1
## 7368              putin                    fake   1
## 7369              putin               loyalists   1
## 7370              putin                  russia   1
## 7371              putin                tomorrow   1
## 7372            putting                politics   1
## 7373          pyongyang                progress   1
## 7374          qualified               kavanaugh   1
## 7375          qualified                  person   1
## 7376            quality              affordable   1
## 7377          quarterly               reporting   1
## 7378          quarterly                   trade   1
## 7379              queen                 letizia   1
## 7380       questionably                     run   1
## 7381          questions                   total   1
## 7382              quick                   round   1
## 7383            quickly                european   1
## 7384            quickly                  firing   1
## 7385            quickly                    pass   1
## 7386            quickly                  picked   1
## 7387               quit                    town   1
## 7388              quote               anonymous   1
## 7389             quotes                woodward   1
## 7390            quoting               anonymous   1
## 7391            quoting                   phony   1
## 7392            quoting                 sources   1
## 7393                r’s                 counter   1
## 7394               race                    bush   1
## 7395             rachel                  campos   1
## 7396              radar                   chris   1
## 7397            radical                democrat   1
## 7398            radical               democrats   1
## 7399            radical                 islamic   1
## 7400            radical              protesters   1
## 7401           railroad            commissioner   1
## 7402              raise                     age   1
## 7403              raise                     due   1
## 7404             raised                    drug   1
## 7405             raised                   taxes   1
## 7406             raises              legitimate   1
## 7407             raises                    lots   1
## 7408            raising                billions   1
## 7409            raising                    vast   1
## 7410            rallies                   don’t   1
## 7411            rallies                     won   1
## 7412              rally                    join   1
## 7413              rally                 shortly   1
## 7414              rally             something’s   1
## 7415              rally                  speech   1
## 7416              rally                  stayed   1
## 7417              rally              supporting   1
## 7418              rally                 tonight   1
## 7419              rally                    wall   1
## 7420              ralph                 northam   1
## 7421            rampant                  unfair   1
## 7422                ran                   clone   1
## 7423             random                   chain   1
## 7424              randy                hultgren   1
## 7425              randy                   total   1
## 7426               rank                    file   1
## 7427            rapidly                downward   1
## 7428            rapidly                  expand   1
## 7429            rapidly                  losing   1
## 7430            rapidly              rebuilding   1
## 7431               rare             opportunity   1
## 7432          rasmussen                    it’s   1
## 7433               rate                     3.9   1
## 7434               rate                     4.2   1
## 7435               rate                    book   1
## 7436               rate                    hike   1
## 7437               rate                    hits   1
## 7438               rate                reporter   1
## 7439               rate                  travel   1
## 7440              rated                     cnn   1
## 7441              rated                  oscars   1
## 7442              rates                amazon’s   1
## 7443              rates                  credit   1
## 7444              rates                   lower   1
## 7445             rating                  jumped   1
## 7446            ratings              challenged   1
## 7447            ratings         congratulations   1
## 7448            ratings                   loser   1
## 7449            ratings                 morning   1
## 7450            ratings                    suck   1
## 7451              reach                ybls2018   1
## 7452            reached                 meeting   1
## 7453               read                   enjoy   1
## 7454               read                   trump   1
## 7455              ready                  russia   1
## 7456             reagan                    dole   1
## 7457             reagan                   we’re   1
## 7458               real               americans   1
## 7459               real                  answer   1
## 7460               real                attorney   1
## 7461               real               barometer   1
## 7462               real                    book   1
## 7463               real                  boxers   1
## 7464               real                  chance   1
## 7465               real                  change   1
## 7466               real               collusion   1
## 7467               real                    cost   1
## 7468               real                   costs   1
## 7469               real                   enemy   1
## 7470               real                 friends   1
## 7471               real                 hillary   1
## 7472               real               illegally   1
## 7473               real                   issue   1
## 7474               real                  people   1
## 7475               real              republican   1
## 7476               real                 results   1
## 7477               real                 russian   1
## 7478               real                 scandal   1
## 7479               real                villains   1
## 7480             reason               including   1
## 7481         reasonable             immigration   1
## 7482         reasonable                payments   1
## 7483            reasons                       1   1
## 7484        reauthorize                 foreign   1
## 7485        reauthorize              perkinscte   1
## 7486             rebelo                      de   1
## 7487            rebuild                  puerto   1
## 7488            rebuild                  strong   1
## 7489         rebuilding              electrical   1
## 7490         rebuilding                military   1
## 7491            receive                    care   1
## 7492           received                 bonuses   1
## 7493           received                   death   1
## 7494           received               documents   1
## 7495           received                 message   1
## 7496          receiving                 bonuses   1
## 7497          receiving            unemployment   1
## 7498             recent                approval   1
## 7499             recent           congressional   1
## 7500             recent                    days   1
## 7501             recent                 emerson   1
## 7502             recent               hurricane   1
## 7503             recent                   nancy   1
## 7504             recent                pictures   1
## 7505             recent                    poll   1
## 7506             recent                  quotes   1
## 7507             recent              statements   1
## 7508             recent                   usmca   1
## 7509             recent                     win   1
## 7510           recently                   added   1
## 7511           recently                  passed   1
## 7512           recently                     won   1
## 7513          recession                 beating   1
## 7514         reciprocal                military   1
## 7515         reciprocal            relationship   1
## 7516         reciprocal                 tariffs   1
## 7517         reciprocal                   taxes   1
## 7518         reciprocal                   trade   1
## 7519        reciprocity                   we’re   1
## 7520         recklessly                  attack   1
## 7521         recklessly                    hard   1
## 7522        recognition                     day   1
## 7523          recognize           extraordinary   1
## 7524       recommending                  action   1
## 7525             record                    7.14   1
## 7526             record                 amounts   1
## 7527             record                  broken   1
## 7528             record                   clean   1
## 7529             record                comments   1
## 7530             record                    jobs   1
## 7531             record                     low   1
## 7532             record                optimism   1
## 7533             record                 profits   1
## 7534             record               statement   1
## 7535             record                   stock   1
## 7536           recorded                   trump   1
## 7537            records                    maga   1
## 7538            records                   texts   1
## 7539            recover                    it’s   1
## 7540                red                  handed   1
## 7541                red                     hen   1
## 7542                red                    line   1
## 7543                red                     sox   1
## 7544                red                    tape   1
## 7545         redemption                 america   1
## 7546            redrawn                election   1
## 7547             reduce                 pricing   1
## 7548            reduced                    deal   1
## 7549            reduced                  prison   1
## 7550            reduced                   witch   1
## 7551            reduces                   trade   1
## 7552           reducing                   taxes   1
## 7553         reductions                 illegal   1
## 7554         reflective             president’s   1
## 7555             reform                     400   1
## 7556             reform                   event   1
## 7557             reform                     law   1
## 7558             reform                 package   1
## 7559            reforms                    read   1
## 7560           refusing                scripted   1
## 7561                reg                    cuts   1
## 7562         registered                lobbyist   1
## 7563       registration                     act   1
## 7564         regulation               reduction   1
## 7565        regulations                    hard   1
## 7566        regulations                    shut   1
## 7567        regulations                   taxes   1
## 7568         regulatory                  relief   1
## 7569         reinstated                 holding   1
## 7570           rejected                 senator   1
## 7571            related                 charges   1
## 7572            related                  terror   1
## 7573       relationship             unbreakable   1
## 7574            release               democrats   1
## 7575            release                   final   1
## 7576            release                 lottery   1
## 7577            release               sanctuary   1
## 7578            release                 violent   1
## 7579            release                    visa   1
## 7580           released                    book   1
## 7581           released                  friday   1
## 7582           released             immediately   1
## 7583          releasing               dangerous   1
## 7584          releasing           unaccompanied   1
## 7585           reliable                    vote   1
## 7586             relief                   money   1
## 7587             remain               sheltered   1
## 7588          remaining                sections   1
## 7589            remains                  coming   1
## 7590            remains                stronger   1
## 7591            remains              tremendous   1
## 7592         remarkable         accomplishments   1
## 7593           remember                    daca   1
## 7594           remember                    dems   1
## 7595           remember                 florida   1
## 7596           remember                    it’s   1
## 7597           remember                 michael   1
## 7598           remember                   nafta   1
## 7599           remember                   reset   1
## 7600           remember                  sailor   1
## 7601        remembrance                     day   1
## 7602        remembrance                 display   1
## 7603             remove                     gag   1
## 7604             remove                 tariffs   1
## 7605       renegotiated                 america   1
## 7606         renovating                  plants   1
## 7607           renowned                 jurists   1
## 7608                rep                 jenkins   1
## 7609                rep                     lou   1
## 7610           rep.trey                   gowdy   1
## 7611             repeal                 replace   1
## 7612            replace                     a.g   1
## 7613            replace                    dana   1
## 7614             report                findings   1
## 7615             report                   isn’t   1
## 7616             report                   makes   1
## 7617             report                    news   1
## 7618             report                   obama   1
## 7619             report                released   1
## 7620             report                 totally   1
## 7621           reported               collusion   1
## 7622           reported                    dead   1
## 7623           reported                 doesn’t   1
## 7624           reported                    fake   1
## 7625           reported                 stories   1
## 7626           reporter                   named   1
## 7627          reporters                 spotted   1
## 7628          reporting                   makes   1
## 7629            reports                 refused   1
## 7630     representative                   devin   1
## 7631     representative               implanted   1
## 7632     representative                   katie   1
## 7633     representative                    rick   1
## 7634    representatives                  didn’t   1
## 7635    representatives                  issued   1
## 7636    representatives                    told   1
## 7637        represented                 clinton   1
## 7638         republican                  agenda   1
## 7639         republican              candidates   1
## 7640         republican                 circles   1
## 7641         republican           congressional   1
## 7642         republican             congressmen   1
## 7643         republican            counterparts   1
## 7644         republican                  debbie   1
## 7645         republican                election   1
## 7646         republican                    john   1
## 7647         republican                    maga   1
## 7648         republican                majority   1
## 7649         republican               primaries   1
## 7650         republican                 senator   1
## 7651         republican                senators   1
## 7652         republican                    star   1
## 7653         republican                strength   1
## 7654         republican                tomorrow   1
## 7655         republican               victories   1
## 7656         republican                     win   1
## 7657        republicans         congratulations   1
## 7658        republicans           conservatives   1
## 7659        republicans                 elected   1
## 7660        republicans                improves   1
## 7661        republicans          overwhelmingly   1
## 7662        republicans                remember   1
## 7663        republicans                   stand   1
## 7664        republicans                    stay   1
## 7665        republicans                 support   1
## 7666         requesting                 dollars   1
## 7667           required              television   1
## 7668       requirements                included   1
## 7669        rescissions                 package   1
## 7670            reseach                  center   1
## 7671           research                  funded   1
## 7672           research               happening   1
## 7673           research                obtained   1
## 7674          reservoir                    bill   1
## 7675              reset                   peace   1
## 7676           resident                    nazi   1
## 7677             resist                   blame   1
## 7678             resist                   delay   1
## 7679            respect                     2nd   1
## 7680          respected                 admiral   1
## 7681          respected             congressman   1
## 7682          respected                 federal   1
## 7683          respected                   judge   1
## 7684          respected                 lawyers   1
## 7685          respected               political   1
## 7686          respected              republican   1
## 7687          respected                  strong   1
## 7688          respected                     u.s   1
## 7689          respected                  voting   1
## 7690          respected                   white   1
## 7691            respond                 quickly   1
## 7692         responders           approximately   1
## 7693         responders        hurricanemichael   1
## 7694         responders                     law   1
## 7695         responders                 medical   1
## 7696         responders                  rushed   1
## 7697           response                    memo   1
## 7698        responsible               countries   1
## 7699            restart                 imports   1
## 7700            restore               america’s   1
## 7701            restore                     job   1
## 7702        restrictive                  mexico   1
## 7703             result                  judges   1
## 7704             result                 mission   1
## 7705            results                      93   1
## 7706            results                  coming   1
## 7707            results                 tuesday   1
## 7708           retained                    bill   1
## 7709             retire                  tester   1
## 7710         retirement                 account   1
## 7711         retirement                security   1
## 7712             return         congratulations   1
## 7713             return                    home   1
## 7714             return                   money   1
## 7715             return                  that’s   1
## 7716           returned                  safely   1
## 7717          returning                  donald   1
## 7718          returning                   power   1
## 7719          reuniting                 illegal   1
## 7720             reveal                   media   1
## 7721           revealed                    anti   1
## 7722            reveals                internal   1
## 7723           reverend                  graham   1
## 7724             review           modernization   1
## 7725           reviewed                    book   1
## 7726            revised                  upward   1
## 7727            rewrite                 history   1
## 7728           rhetoric                   watch   1
## 7729                ric                 grenell   1
## 7730               rich                building   1
## 7731               rich                    hill   1
## 7732               rich             imagination   1
## 7733               rich                    nato   1
## 7734            richard                 cordray   1
## 7735            richard                  trumka   1
## 7736             richly                 deserve   1
## 7737           richmond                kentucky   1
## 7738               rick            breckenridge   1
## 7739               rico                national   1
## 7740             ridden               overtaxed   1
## 7741         ridiculous                     230   1
## 7742         ridiculous                      60   1
## 7743         ridiculous                      71   1
## 7744         ridiculous                   crime   1
## 7745         ridiculous             immigration   1
## 7746         ridiculous                 liberal   1
## 7747         ridiculous                    news   1
## 7748         ridiculous                spending   1
## 7749         ridiculous               statement   1
## 7750       ridiculously               comparing   1
## 7751       ridiculously                 heavily   1
## 7752       ridiculously                  unfair   1
## 7753                rig               america’s   1
## 7754             rigged                   fraud   1
## 7755             rigged                 mueller   1
## 7756         rightfully            strengthened   1
## 7757             rights                movement   1
## 7758         righttotry                     law   1
## 7759         righttotry             legislation   1
## 7760             rising               rasmussen   1
## 7761             rising                   wages   1
## 7762             rising                     wow   1
## 7763               risk                   peace   1
## 7764               risk                  review   1
## 7765               risk               thousands   1
## 7766              rival            presidential   1
## 7767           riveting               democrats   1
## 7768                rnc                   chair   1
## 7769              roads                 bridges   1
## 7770            roaring                 supreme   1
## 7771            robbery                       2   1
## 7772             robert                      de   1
## 7773             robert               mueller’s   1
## 7774          rochester               minnesota   1
## 7775             rocket                   fired   1
## 7776             rocket                    ship   1
## 7777            rockets                  flying   1
## 7778                rod             blagojevich   1
## 7779                rod            rosenstein’s   1
## 7780              roger                   stone   1
## 7781             rogers                     fbi   1
## 7782            rolling                 thunder   1
## 7783             romney         congratulations   1
## 7784              ronna                mcdaniel   1
## 7785               roof                   don’t   1
## 7786               rose                      16   1
## 7787           roseanne                    barr   1
## 7788           rosemary                 collier   1
## 7789         rosenstein                  stated   1
## 7790       rosenstein’s                    memo   1
## 7791               rosh                hashanah   1
## 7792            rothfus               continues   1
## 7793             rotten                 corrupt   1
## 7794              rough                criminal   1
## 7795            roughly                   1,800   1
## 7796             rounds                 collins   1
## 7797          routinely                 charged   1
## 7798          routinely                violates   1
## 7799             roving            commissioner   1
## 7800                roy                  cooper   1
## 7801               rude                elevator   1
## 7802             ruined                   lives   1
## 7803            ruining                   lives   1
## 7804            ruining                people’s   1
## 7805               rule                 banning   1
## 7806               rule                  retire   1
## 7807               rule                strategy   1
## 7808              ruled        unconstitutional   1
## 7809                run                    lead   1
## 7810                run                opponent   1
## 7811                run             tallahassee   1
## 7812                run              washington   1
## 7813                run                    wild   1
## 7814            running                 broward   1
## 7815            running                   obama   1
## 7816             russia                       2   1
## 7817             russia              absolutely   1
## 7818             russia                billions   1
## 7819             russia               collusion   1
## 7820             russia               continues   1
## 7821             russia                  expert   1
## 7822             russia                     fbi   1
## 7823             russia               including   1
## 7824             russia          investigations   1
## 7825             russia                   rally   1
## 7826             russia                   sadly   1
## 7827             russia                 started   1
## 7828             russia                    vows   1
## 7829             russia                     wow   1
## 7830            russian                     ads   1
## 7831            russian                  excuse   1
## 7832            russian              government   1
## 7833            russian             individuals   1
## 7834            russian                 project   1
## 7835            russian                    sold   1
## 7836           russians              incredible   1
## 7837           russians            infiltrating   1
## 7838           russians                     pay   1
## 7839           russians                 request   1
## 7840           russians                 russian   1
## 7841           russians               yesterday   1
## 7842                 rv                    tour   1
## 7843             rwanda               president   1
## 7844                 rx                   pills   1
## 7845                s.c                   comey   1
## 7846            saccone                 running   1
## 7847             sacred                    cows   1
## 7848             sacred           investigative   1
## 7849             sacred                    soil   1
## 7850                sad                  _regan   1
## 7851                sad                 chapter   1
## 7852                sad                     day   1
## 7853                sad                  solemn   1
## 7854              sadly                    fake   1
## 7855               safe             communities   1
## 7856               safe             confirmgina   1
## 7857               safe       hurricaneflorence   1
## 7858               safe        hurricanemichael   1
## 7859               safe               including   1
## 7860               safe                  modern   1
## 7861               safe                 schools   1
## 7862               safe                  strong   1
## 7863             safely                    home   1
## 7864             safety                     app   1
## 7865             safety                  crisis   1
## 7866             safety                   don’t   1
## 7867             safety                officers   1
## 7868             safety              roundtable   1
## 7869             safety               yesterday   1
## 7870              saint              petersburg   1
## 7871             salena                    zito   1
## 7872              sales                    bump   1
## 7873              sales                     tax   1
## 7874              sally                   yates   1
## 7875           samantha                     bee   1
## 7876                san                   bruno   1
## 7877      sanctimonious                   james   1
## 7878          sanctions                  remain   1
## 7879          sanctuary           jurisdictions   1
## 7880          sanctuary                    laws   1
## 7881               sane                  agreed   1
## 7882            sanford                 primary   1
## 7883              santa                      fe   1
## 7884              sarah                huckabee   1
## 7885              sarah                 sanders   1
## 7886           saturday                   april   1
## 7887           saturday                 tickets   1
## 7888              saudi                 arabian   1
## 7889              saudi               consulate   1
## 7890              saudi               situation   1
## 7891             savage                    gang   1
## 7892             savage                   gangs   1
## 7893             savage                   sicko   1
## 7894           savannah                  hilton   1
## 7895               save             credibility   1
## 7896               save                innocent   1
## 7897               save                   lives   1
## 7898               save                  mexico   1
## 7899               save             potentially   1
## 7900               save                taxpayer   1
## 7901               save              tremendous   1
## 7902             saving                soldiers   1
## 7903             saving                     usa   1
## 7904              scale                 killing   1
## 7905               scam                continue   1
## 7906               scam           investigation   1
## 7907               scam                   witch   1
## 7908         scandalous                  mollie   1
## 7909             scared                   stiff   1
## 7910              scary                   stuff   1
## 7911           scathing                document   1
## 7912              scene                      13   1
## 7913              scene                  people   1
## 7914          scheduled                 meeting   1
## 7915            scheels                   arena   1
## 7916             schiff                 omitted   1
## 7917           scholars                   agree   1
## 7918             school            accomplished   1
## 7919             school                 cowards   1
## 7920             school                    love   1
## 7921             school                   shame   1
## 7922             school                 shooter   1
## 7923             school               shootings   1
## 7924            schools               hospitals   1
## 7925            schultz                 servers   1
## 7926            schumer                  failed   1
## 7927            schumer                  fought   1
## 7928            schumer                  maxine   1
## 7929            schumer                   nancy   1
## 7930            schumer                  pelosi   1
## 7931            schumer                  puppet   1
## 7932            schumer                  rounds   1
## 7933            schumer                  tester   1
## 7934              scott                  called   1
## 7935              scott                  gillum   1
## 7936              scott                    lamb   1
## 7937              scott                morrison   1
## 7938              scott                   perry   1
## 7939              scott                    wren   1
## 7940             scream                    it’s   1
## 7941             scream             obstruction   1
## 7942         screeching                    halt   1
## 7943           scripted                question   1
## 7944                sea                     oil   1
## 7945               seal                  master   1
## 7946               sean                  spicer   1
## 7947             search                 results   1
## 7948             season              apprentice   1
## 7949             season                   bring   1
## 7950             season                disaster   1
## 7951               seat                  debbie   1
## 7952          sebastian                   gorka   1
## 7953             secret                  access   1
## 7954          secretary                       1   1
## 7955          secretary                  perdue   1
## 7956          secretary                  robert   1
## 7957           secretly               gathering   1
## 7958           secretly           investigating   1
## 7959             sector                     pay   1
## 7960            secured                       5   1
## 7961           security                 advisor   1
## 7962           security               agreement   1
## 7963           security              challenges   1
## 7964           security                  checks   1
## 7965           security              clearances   1
## 7966           security                 council   1
## 7967           security                  expert   1
## 7968           security              guarantees   1
## 7969           security               including   1
## 7970           security                    laws   1
## 7971           security                 package   1
## 7972           security           professionals   1
## 7973           security              prosperity   1
## 7974           security                  public   1
## 7975           security                purposes   1
## 7976           security                 reasons   1
## 7977           security            relationship   1
## 7978           security             republicans   1
## 7979           security                spending   1
## 7980           security                    wall   1
## 7981               seek                    dirt   1
## 7982            seeking              perfection   1
## 7983          seemingly                 massive   1
## 7984            seizing                    land   1
## 7985             seldom                 allowed   1
## 7986           selfless                  public   1
## 7987           selfless                 service   1
## 7988         selflessly                  served   1
## 7989            selling                    book   1
## 7990            selling                   books   1
## 7991            semitic                  attack   1
## 7992                sen                  dianne   1
## 7993             senate                     100   1
## 7994             senate                      53   1
## 7995             senate                approved   1
## 7996             senate                   can’t   1
## 7997             senate                     gop   1
## 7998             senate                   intel   1
## 7999             senate               judiciary   1
## 8000             senate                   level   1
## 8001             senate                    meet   1
## 8002             senate                midterms   1
## 8003             senate                    mike   1
## 8004             senate                 passage   1
## 8005             senate                 patrick   1
## 8006             senate                    seat   1
## 8007             senate               unopposed   1
## 8008             senate                    vote   1
## 8009           senate’s                  august   1
## 8010            senator              ambassador   1
## 8011            senator                     bob   1
## 8012            senator                   chuck   1
## 8013            senator                   cindy   1
## 8014            senator                   cryin   1
## 8015            senator                   david   1
## 8016            senator                    dean   1
## 8017            senator                  debbie   1
## 8018            senator                   diane   1
## 8019            senator                   don’t   1
## 8020            senator               feinstein   1
## 8021            senator                   heidi   1
## 8022            senator                    hyde   1
## 8023            senator                    jeff   1
## 8024            senator                     joe   1
## 8025            senator            representing   1
## 8026            senator                 schumer   1
## 8027            senator                sessions   1
## 8028               send                     1.7   1
## 8029               send                    mike   1
## 8030            sending                    home   1
## 8031             senior          administration   1
## 8032             senior                 defense   1
## 8033             senior                  editor   1
## 8034             senior                   white   1
## 8035            seniors                   crazy   1
## 8036          senseless                   death   1
## 8037           sentence                 reduced   1
## 8038          sentiment                    fell   1
## 8039          sentiment                     hit   1
## 8040         separately                services   1
## 8041          separates                children   1
## 8042         separating                families   1
## 8043          september                notching   1
## 8044           sergeant                    died   1
## 8045           sergeant                   major   1
## 8046             sergio              marchionne   1
## 8047             served                 proudly   1
## 8048             server                 crooked   1
## 8049            service                   agent   1
## 8050            service              department   1
## 8051            service                  dinner   1
## 8052            service                    gina   1
## 8053            service           organizations   1
## 8054           services                  market   1
## 8055           services                rendered   1
## 8056           services               violation   1
## 8057            serving                overseas   1
## 8058            serving                solitary   1
## 8059           sessions                  didn’t   1
## 8060           sessions                   gregg   1
## 8061           sessions                mentally   1
## 8062                set                economic   1
## 8063                set                    free   1
## 8064               seth                  meyers   1
## 8065            setting                governor   1
## 8066            setting                positive   1
## 8067              setup                    trap   1
## 8068           severely              criticized   1
## 8069                sgt                 charles   1
## 8070                sgt                     dan   1
## 8071             shadey                   james   1
## 8072             shadow                 banning   1
## 8073             shadow               diplomacy   1
## 8074              shady                   james   1
## 8075               sham           investigation   1
## 8076          shameless                 attacks   1
## 8077           shamrock                    bowl   1
## 8078              shana                    tova   1
## 8079        shanksville            pennsylvania   1
## 8080              shape               america’s   1
## 8081             shares                 lessons   1
## 8082              she’s                  strong   1
## 8083         shellacked                       4   1
## 8084          sheriff’s                sergeant   1
## 8085           shipping                   costs   1
## 8086              shock                  report   1
## 8087            shooter                     god   1
## 8088           shooting                   lasts   1
## 8089           shooting                survivor   1
## 8090           shooting               targeting   1
## 8091              short                  speech   1
## 8092              short                    term   1
## 8093           shortest                  period   1
## 8094            shortly                 landing   1
## 8095            shortly                    maga   1
## 8096            shortly               magarally   1
## 8097               shot                congrats   1
## 8098               shot                numerous   1
## 8099          shouldn’t                    meet   1
## 8100          shouldn’t                     pay   1
## 8101              shown            conclusively   1
## 8102          shulkin’s                 service   1
## 8103             shurer                      ii   1
## 8104           shutdown                  coming   1
## 8105           shutdown               democrats   1
## 8106           shutdown                politics   1
## 8107           shutdown                  speech   1
## 8108               sick                behavior   1
## 8109               sick                    deal   1
## 8110               sick                   loser   1
## 8111               sick               narrative   1
## 8112           sickness                  hatred   1
## 8113              sicko                 shooter   1
## 8114                sid                  miller   1
## 8115              sided                coverage   1
## 8116              sided                   trade   1
## 8117              sided                   witch   1
## 8118           sidekick                   cryin   1
## 8119              siege                congress   1
## 8120               sign              confirming   1
## 8121               sign             immediately   1
## 8122               sign              righttotry   1
## 8123               sign                   s2155   1
## 8124         signatures                   don’t   1
## 8125             signed                     702   1
## 8126             signed                    bill   1
## 8127             signed                    fisa   1
## 8128        significant              investment   1
## 8129        significant                 reforms   1
## 8130            signing                ceremony   1
## 8131              signs                    paid   1
## 8132          silencing                millions   1
## 8133             simple                  choice   1
## 8134             simple                 private   1
## 8135             simply                   apply   1
## 8136             simply               terminate   1
## 8137            simpson                pleading   1
## 8138          simpson’s               testimony   1
## 8139            sincere                   level   1
## 8140           sinclair            broadcasting   1
## 8141           sinclair             disgraceful   1
## 8142             sinema                 doesn’t   1
## 8143             sinema                   drugs   1
## 8144          singapore              excitement   1
## 8145          singapore                  summit   1
## 8146             single                  figure   1
## 8147             single                 quality   1
## 8148           sinister                purposes   1
## 8149               site                 closure   1
## 8150              sites                 closing   1
## 8151              sites                hostages   1
## 8152            sitting              presidents   1
## 8153          situation                 anymore   1
## 8154            sixteen                   weeks   1
## 8155               size             enterprises   1
## 8156              skype                  hosted   1
## 8157             slides                 rapidly   1
## 8158              slime                    ball   1
## 8159             slogan                promises   1
## 8160            slowest                economic   1
## 8161             slowly                 forward   1
## 8162              slows                    news   1
## 8163              smart                congress   1
## 8164              smart                  people   1
## 8165              smart                  strong   1
## 8166              smart                thinkers   1
## 8167              smart                   tough   1
## 8168              smart                   trade   1
## 8169            smarter                  person   1
## 8170           smartest                  people   1
## 8171           smartest               strongest   1
## 8172           smartest                toughest   1
## 8173             smarts                   obama   1
## 8174             smooth          communications   1
## 8175          sobbingly                admitted   1
## 8176             social                 contact   1
## 8177             social                security   1
## 8178          socialist                  agenda   1
## 8179          socialist                   mayor   1
## 8180          socialist               nightmare   1
## 8181          socialist                opponent   1
## 8182            society               reception   1
## 8183               sold                   phony   1
## 8184           soldiers                    hurt   1
## 8185           soldiers               prisoners   1
## 8186           soldiers                    read   1
## 8187               sole                 purpose   1
## 8188             solemn                occasion   1
## 8189             solemn               occasions   1
## 8190          solicitor                 generel   1
## 8191              solid                response   1
## 8192           solitary             confinement   1
## 8193              solve               conflicts   1
## 8194              solve                    daca   1
## 8195            someday                   study   1
## 8196          someone's                    rich   1
## 8197                son                  donald   1
## 8198                son                 michael   1
## 8199                son                    nick   1
## 8200               sooo                  strong   1
## 8201              soooo                  simple   1
## 8202              soooo                   wrong   1
## 8203             sooooo                   wrong   1
## 8204      sophisticated               dishonest   1
## 8205      sophisticated                   staff   1
## 8206             sought                  review   1
## 8207               soul                  aretha   1
## 8208              sound                   naive   1
## 8209              sound                    real   1
## 8210             source                 avoided   1
## 8211             source                    stop   1
## 8212            sources                 dancing   1
## 8213            sources                   don’t   1
## 8214              south                  africa   1
## 8215              south                 african   1
## 8216              south                  dakota   1
## 8217              south                northcom   1
## 8218            souther                  border   1
## 8219           southern              california   1
## 8220           southern                district   1
## 8221           southern                   white   1
## 8222          southport                 indiana   1
## 8223          southwest                airlines   1
## 8224          sovereign                  nation   1
## 8225                sox                   final   1
## 8226                soy                   beans   1
## 8227           soybeans                  canada   1
## 8228           soybeans               liquified   1
## 8229              space                 flights   1
## 8230             spacex                   space   1
## 8231            speaker                 nervous   1
## 8232            speaker                    paul   1
## 8233            special               elections   1
## 8234            special                  moment   1
## 8235            special                  person   1
## 8236            special              prosecutor   1
## 8237            special            relationship   1
## 8238            special                training   1
## 8239            special                 warfare   1
## 8240        spectacular                    vote   1
## 8241             speech                    45.6   1
## 8242           speeches                  emails   1
## 8243              spend                      63   1
## 8244           spending                       7   1
## 8245           spending                billions   1
## 8246           spending                   bills   1
## 8247           spending                hundreds   1
## 8248           spending                released   1
## 8249           spending                    vast   1
## 8250           spending                    we’d   1
## 8251              spent                      35   1
## 8252              spent                     716   1
## 8253              spent                    it’s   1
## 8254              spent               trillions   1
## 8255              spies              informants   1
## 8256              spies                russians   1
## 8257               spin                machines   1
## 8258             spirit               america’s   1
## 8259           spirited                     law   1
## 8260            spotted                 melania   1
## 8261            spotted                 wearing   1
## 8262             spring                   marks   1
## 8263                spy               documents   1
## 8264                spy                 scandal   1
## 8265                spy                warrants   1
## 8266                spy                  wasn’t   1
## 8267                spy              widespread   1
## 8268            spygate               conflicts   1
## 8269             spying               involving   1
## 8270             spying                 scandal   1
## 8271             square                  garden   1
## 8272           squirrel                    hill   1
## 8273           stabenow                    vote   1
## 8274              staff                    fake   1
## 8275              staff                    mick   1
## 8276              staff                position   1
## 8277              staff                     sgt   1
## 8278          stalemate               continues   1
## 8279           stallone                  called   1
## 8280             stamps               provision   1
## 8281             stance                     100   1
## 8282              stand                  losing   1
## 8283              stand                   ready   1
## 8284           standard                     run   1
## 8285          standards                   worse   1
## 8286           standing                 proudly   1
## 8287             stands                   ready   1
## 8288            stanley                     cup   1
## 8289               star                  father   1
## 8290              stars                 anymore   1
## 8291              start                building   1
## 8292              start                  coming   1
## 8293              start                   dying   1
## 8294              start                fighting   1
## 8295              start                focusing   1
## 8296              start            implementing   1
## 8297              start               investing   1
## 8298              start                  paying   1
## 8299              start              purchasing   1
## 8300              start                 pushing   1
## 8301              start                 ranting   1
## 8302              start                 talking   1
## 8303              start                thinking   1
## 8304              start            unemployment   1
## 8305              start                    wall   1
## 8306            started                 finding   1
## 8307            started              influenced   1
## 8308            started                  paying   1
## 8309            started                 tonight   1
## 8310           starting              reciprocal   1
## 8311           startled             amazed.they   1
## 8312             starts                 talking   1
## 8313             stated                    mary   1
## 8314             stated               president   1
## 8315             stated                     red   1
## 8316         statements                 purport   1
## 8317          statewide                  school   1
## 8318            station                 miramar   1
## 8319               stay                     100   1
## 8320               stay                   tough   1
## 8321               stay              uninvolved   1
## 8322           stealing                  lawyer   1
## 8323              steel                      50   1
## 8324              steel                aluminum   1
## 8325              steel                 america   1
## 8326              steel                   cages   1
## 8327              steel                    jobs   1
## 8328              steel                    mill   1
## 8329              steel                   plant   1
## 8330             steele                   jesse   1
## 8331             steele                    paid   1
## 8332             steele                 shopped   1
## 8333            stellar              reputation   1
## 8334               step                  closer   1
## 8335               step                 forward   1
## 8336           sterling                virginia   1
## 8337              steve                  daines   1
## 8338              steve                  hilton   1
## 8339              steve                 mnuchin   1
## 8340              steve                  rogers   1
## 8341              stiff                     tim   1
## 8342            stifled                  growth   1
## 8343              stitt                     ran   1
## 8344             stocks                     bad   1
## 8345             stocks                congress   1
## 8346             stocks                   widen   1
## 8347             stolen                 crooked   1
## 8348              stone             essentially   1
## 8349              stood                 proudly   1
## 8350               stop                     act   1
## 8351               stop                  amazon   1
## 8352               stop               candidate   1
## 8353               stop                 caravan   1
## 8354               stop             complaining   1
## 8355               stop                   drugs   1
## 8356               stop                    fire   1
## 8357               stop                 nuclear   1
## 8358               stop               quarterly   1
## 8359               stop                 reading   1
## 8360               stop               releasing   1
## 8361               stop                   trade   1
## 8362               stop                   trump   1
## 8363               stop                 wasting   1
## 8364               stop                 whining   1
## 8365           stopping                   drugs   1
## 8366           stopping               terrorism   1
## 8367            stories                    news   1
## 8368            stories                 written   1
## 8369              storm                  begins   1
## 8370              storm                 federal   1
## 8371       stormtrooper                 tactics   1
## 8372             stormy                 danials   1
## 8373              story              indicating   1
## 8374              story                  maggie   1
## 8375              story                 stating   1
## 8376              story                    told   1
## 8377              straw                    poll   1
## 8378             streak               continues   1
## 8379             street                  reduce   1
## 8380             street                 roaring   1
## 8381            streets             politicians   1
## 8382         strengthen                     cnn   1
## 8383      strengthening              background   1
## 8384      strengthening              retirement   1
## 8385        strengthens                 failing   1
## 8386           strictly               political   1
## 8387             strong                  action   1
## 8388             strong              bargaining   1
## 8389             strong                barriers   1
## 8390             strong                     bid   1
## 8391             strong              bipartisan   1
## 8392             strong                congress   1
## 8393             strong                democrat   1
## 8394             strong                dialogue   1
## 8395             strong                 economy   1
## 8396             strong                    farm   1
## 8397             strong             improvement   1
## 8398             strong                     job   1
## 8399             strong                     law   1
## 8400             strong              leadership   1
## 8401             strong                military   1
## 8402             strong                  policy   1
## 8403             strong                 profits   1
## 8404             strong                    push   1
## 8405             strong                    rich   1
## 8406             strong                 signals   1
## 8407             strong                southern   1
## 8408             strong               statement   1
## 8409             strong                   tight   1
## 8410             strong           understanding   1
## 8411           stronger                  border   1
## 8412           stronger                 borders   1
## 8413           stronger                measures   1
## 8414           stronger            unemployment   1
## 8415          strongest                 holiday   1
## 8416           strongly                endorsed   1
## 8417           strongly                informed   1
## 8418           strongly                notified   1
## 8419           strongly                 protect   1
## 8420           strongly                 pushing   1
## 8421           strongly               requested   1
## 8422           strongly                   stand   1
## 8423           strongly                supports   1
## 8424             strzok                 blaming   1
## 8425             strzok                    lies   1
## 8426             strzok                    read   1
## 8427             strzok                 started   1
## 8428             strzok                  texted   1
## 8429            student                 leaders   1
## 8430           students              businesses   1
## 8431           students                families   1
## 8432           students                teachers   1
## 8433              study                released   1
## 8434              stuff                   don’t   1
## 8435              stuff                   obama   1
## 8436          stumbling                 lunatic   1
## 8437             stupid              filibuster   1
## 8438           stupidly                spending   1
## 8439              style                   witch   1
## 8440           subjects               discussed   1
## 8441           subjects               including   1
## 8442          submarine                     san   1
## 8443          subsidies               including   1
## 8444          subsidize                  europe   1
## 8445         subsidizes                 greatly   1
## 8446        substantial                  margin   1
## 8447      substantially                     jay   1
## 8448      substantially                reducing   1
## 8449      substantially             republicans   1
## 8450         subversive                  crimes   1
## 8451            success                 amazing   1
## 8452            success                    i’ve   1
## 8453            success                  that’s   1
## 8454            success                 tonight   1
## 8455            success              washington   1
## 8456         successful          administration   1
## 8457         successful                  agenda   1
## 8458         successful                campaign   1
## 8459         successful                     car   1
## 8460         successful                 country   1
## 8461         successful             falconheavy   1
## 8462         successful                    firm   1
## 8463         successful                  launch   1
## 8464         successful                   model   1
## 8465         successful               president   1
## 8466         successful               procedure   1
## 8467         successful                  rescue   1
## 8468       successfully                 raising   1
## 8469       successfully            renegotiated   1
## 8470             sudden              screeching   1
## 8471                sue                 kruczek   1
## 8472             suffer            consequences   1
## 8473           suffered                 gravely   1
## 8474           suffered             unthinkable   1
## 8475          suffering                 greatly   1
## 8476         sufficient                progress   1
## 8477            suggest                  voting   1
## 8478          suggested                 driving   1
## 8479           suggests                building   1
## 8480         sulzberger               publisher   1
## 8481             summit              agreements   1
## 8482              super                    bowl   1
## 8483          superstar                     d.c   1
## 8484            support                   ahead   1
## 8485            support               america’s   1
## 8486            support             comptroller   1
## 8487            support                   diane   1
## 8488            support                   kevin   1
## 8489            support                     law   1
## 8490            support             legislation   1
## 8491            support                   local   1
## 8492            support                    matt   1
## 8493            support                   mitch   1
## 8494            support                  people   1
## 8495            support               religious   1
## 8496            support                  senate   1
## 8497            support                tomorrow   1
## 8498          supported                     tax   1
## 8499          supporter                    kris   1
## 8500          supporter                     lou   1
## 8501         supporters               country’s   1
## 8502         supporting                     ice   1
## 8503         supporting                veterans   1
## 8504           supports                  breast   1
## 8505         supposedly                  stolen   1
## 8506        suppressing                  voices   1
## 8507        suppression                    game   1
## 8508        suppression                    poll   1
## 8509        suppression                   polls   1
## 8510           suresnes                american   1
## 8511          surprised                     i’m   1
## 8512       surprisingly               obamacare   1
## 8513       surveillance                  abuses   1
## 8514            suspend                 nuclear   1
## 8515          suspended                     u.s   1
## 8516              sweat                   blood   1
## 8517           sweeping                  action   1
## 8518              swept                prairies   1
## 8519              swiss           confederation   1
## 8520        switzerland                   enjoy   1
## 8521        switzerland                  speech   1
## 8522          sylvester                stallone   1
## 8523           syndrome                 reveals   1
## 8524          synthetic                  heroin   1
## 8525              syria                  border   1
## 8526              syria                   feels   1
## 8527              syria                   saudi   1
## 8528              syria                 ukraine   1
## 8529             syrian                    army   1
## 8530             syrian                disaster   1
## 8531             syrian                    raid   1
## 8532             system                    alan   1
## 8533             system                   chain   1
## 8534             system                jonathan   1
## 8535             system                 legally   1
## 8536             system                   we’re   1
## 8537                t.v                    hits   1
## 8538                t.v                producer   1
## 8539        takebackday                tomorrow   1
## 8540           takedown               yesterday   1
## 8541              takes               advantage   1
## 8542              takes                    care   1
## 8543              takes                  police   1
## 8544              takes              tremendous   1
## 8545             taking                    heat   1
## 8546             taking                   money   1
## 8547             taking                  office   1
## 8548             taking                  strong   1
## 8549             talent                 america   1
## 8550             talent                samantha   1
## 8551           talented                 fighter   1
## 8552           talented                  future   1
## 8553           talented                governor   1
## 8554           talented                     guy   1
## 8555           talented         representatives   1
## 8556           talented                     son   1
## 8557           talented                teachers   1
## 8558            taliban                targeted   1
## 8559               talk        denuclearization   1
## 8560               talk                   trade   1
## 8561               talk                     win   1
## 8562            talking                    daca   1
## 8563            talking                military   1
## 8564            talking              negatively   1
## 8565            talking                politics   1
## 8566            talking                remember   1
## 8567            talking                   trade   1
## 8568              talks                   break   1
## 8569              talks                 chinese   1
## 8570              tampa                 tonight   1
## 8571             target                     ceo   1
## 8572             target                   range   1
## 8573           targeted                innocent   1
## 8574          targeting                  center   1
## 8575          targeting                  donald   1
## 8576          targeting                   trump   1
## 8577             tariff                   hikes   1
## 8578            tariffs                aluminum   1
## 8579            tariffs                   build   1
## 8580            tariffs                    cnbc   1
## 8581            tariffs                    it’s   1
## 8582            tariffs               routinely   1
## 8583            tariffs                 selling   1
## 8584            tariffs                   trade   1
## 8585               tata               president   1
## 8586                tax                   dairy   1
## 8587                tax                    free   1
## 8588                tax                  hikers   1
## 8589                tax               incentive   1
## 8590                tax              reductions   1
## 8591                tax                     reg   1
## 8592                tax                 schumer   1
## 8593              taxed                     i’m   1
## 8594              taxes                    beto   1
## 8595              taxes                  border   1
## 8596              taxes                creating   1
## 8597              taxes                   crime   1
## 8598              taxes                  highly   1
## 8599              taxes                    john   1
## 8600              taxes                   loves   1
## 8601              taxes                    maga   1
## 8602              taxes                 restore   1
## 8603              taxes            unparalleled   1
## 8604              taxes                    vote   1
## 8605              taxes                   waste   1
## 8606              taxes                    weak   1
## 8607               taxi                    cabs   1
## 8608             taxing                   mayor   1
## 8609           taxpayer                 dollars   1
## 8610           taxpayer                   money   1
## 8611          taxpayers                 dollars   1
## 8612          taxpayers              undermines   1
## 8613            teacher                    hero   1
## 8614           teachers                 coaches   1
## 8615           teachers                    guns   1
## 8616           teachers                     law   1
## 8617               team                     100   1
## 8618               team                 captain   1
## 8619               team                  player   1
## 8620               team                     tom   1
## 8621               team                 tragedy   1
## 8622              teams                recently   1
## 8623          technical          irregularities   1
## 8624         technology        centuryofservice   1
## 8625         technology               transfers   1
## 8626                ted                    yoho   1
## 8627         television                     don   1
## 8628         television                 spewing   1
## 8629         television                watching   1
## 8630            telling               witnesses   1
## 8631          tennessee                     god   1
## 8632          tennessee                 primary   1
## 8633          tennessee                 tonight   1
## 8634            tenuous                  berlin   1
## 8635               term                  anchor   1
## 8636               term                  budget   1
## 8637               term               extension   1
## 8638               term                  limits   1
## 8639               term                 mission   1
## 8640               term           reimbursement   1
## 8641               term                solution   1
## 8642               term                   trend   1
## 8643               term               viability   1
## 8644          terminate                   nafta   1
## 8645         terminated                     cut   1
## 8646         terminated                    iran   1
## 8647              terms             republicans   1
## 8648           terrible                    boat   1
## 8649           terrible               candidate   1
## 8650           terrible                  costly   1
## 8651           terrible                director   1
## 8652           terrible                    drug   1
## 8653           terrible                epidemic   1
## 8654           terrible                    gang   1
## 8655           terrible                    hoax   1
## 8656           terrible                humboldt   1
## 8657           terrible             immigration   1
## 8658           terrible           impersonation   1
## 8659           terrible                    iran   1
## 8660           terrible                    loss   1
## 8661           terrible                   nafta   1
## 8662           terrible                  people   1
## 8663           terrible                policies   1
## 8664           terrible                 ratings   1
## 8665           terrible                shooting   1
## 8666           terrible               unrelated   1
## 8667           terrific                 meeting   1
## 8668           terrific                  people   1
## 8669           terrific               political   1
## 8670           terrific                    read   1
## 8671             terror                    task   1
## 8672             terror                     win   1
## 8673          terrorism                 related   1
## 8674          terrorism                security   1
## 8675          terrorism                    tool   1
## 8676          terrorist                    bomb   1
## 8677         terrorists                     win   1
## 8678          terrorize                       3   1
## 8679             tester                   alive   1
## 8680             tester                continue   1
## 8681             tester                   elect   1
## 8682             tester                   takes   1
## 8683           tester’s              statements   1
## 8684          testimony           acknowledging   1
## 8685          testimony                 reveals   1
## 8686            testing                    hero   1
## 8687            testing                research   1
## 8688              tests                   japan   1
## 8689              tests                progress   1
## 8690             texans                    call   1
## 8691              texas                 friends   1
## 8692              texas               including   1
## 8693              texas                 landing   1
## 8694              texas                      lc   1
## 8695              texas                   stand   1
## 8696              texas                    weak   1
## 8697              texts                  emails   1
## 8698              texts               referring   1
## 8699              texts                  reveal   1
## 8700               thai                    navy   1
## 8701       thanksgiving                     day   1
## 8702             that’s                 lacking   1
## 8703             that’s                     o.k   1
## 8704             that’s                   prior   1
## 8705             that’s               unnerving   1
## 8706              theft               typically   1
## 8707              theme          lovesaveslives   1
## 8708            they’ll              disappoint   1
## 8709            they’re           extraordinary   1
## 8710            they’re                     low   1
## 8711           thiessen              washington   1
## 8712           thiessen                   wpost   1
## 8713           thinking                obstruct   1
## 8714             thomas                  binion   1
## 8715           thousand                  people   1
## 8716             threat                    it’s   1
## 8717           threaten                  people   1
## 8718        threatening               illnesses   1
## 8719        threatening               statement   1
## 8720              threw                  andrew   1
## 8721           thriving                billions   1
## 8722          throwback                thursday   1
## 8723             throws                      ag   1
## 8724              thugs               including   1
## 8725              thugs                   spent   1
## 8726           thursday                deadline   1
## 8727           thursday                    maga   1
## 8728             ticket                donnelly   1
## 8729              tiger                   kanye   1
## 8730              tiger                wouldn’t   1
## 8731            tijuana                  mexico   1
## 8732          tillerson                  didn’t   1
## 8733                tim                   kaine   1
## 8734             timber                  lumber   1
## 8735             timber                   mills   1
## 8736               time              benefiting   1
## 8737               time                 biggest   1
## 8738               time               conflicts   1
## 8739               time              detainment   1
## 8740               time                favorite   1
## 8741               time                  giving   1
## 8742               time                   heart   1
## 8743               time                  highly   1
## 8744               time                    i’ve   1
## 8745               time                     low   1
## 8746               time             maintaining   1
## 8747               time                   march   1
## 8748               time                 mueller   1
## 8749               time             opportunity   1
## 8750               time            recommending   1
## 8751               time                reducing   1
## 8752               time                 senator   1
## 8753               time                 talking   1
## 8754               time                terrible   1
## 8755               time                  unfair   1
## 8756               time                     wow   1
## 8757           timeless                   bonds   1
## 8758           timeless                  values   1
## 8759              times              criticized   1
## 8760              times                  didn’t   1
## 8761              times                    fake   1
## 8762              times               purposely   1
## 8763              times                 reports   1
## 8764              times                   spent   1
## 8765           tireless                champion   1
## 8766            today’s            armynavygame   1
## 8767            today’s                briefing   1
## 8768            today’s                   court   1
## 8769            today’s                democrat   1
## 8770            today’s               inaugural   1
## 8771            today’s                 remarks   1
## 8772            today’s                    vote   1
## 8773               told                     hit   1
## 8774               told                   house   1
## 8775               told                 senator   1
## 8776               told                   trump   1
## 8777           tolerate                comments   1
## 8778                tom                   homan   1
## 8779                tom                  steyer   1
## 8780               tomi                  lahren   1
## 8781           tomorrow                   april   1
## 8782           tomorrow                families   1
## 8783           tomorrow                   let’s   1
## 8784           tomorrow                 morning   1
## 8785           tomorrow                 polling   1
## 8786                ton                   steel   1
## 8787            tonight                       7   1
## 8788            tonight                   major   1
## 8789            tonight                missoula   1
## 8790            tonight                 talking   1
## 8791                top                  border   1
## 8792                top                business   1
## 8793                top               executive   1
## 8794                top                     law   1
## 8795                top              leadership   1
## 8796                top                  levels   1
## 8797                top                national   1
## 8798                top               officials   1
## 8799                top               political   1
## 8800                top                priority   1
## 8801                top                   ranks   1
## 8802             topeka                  kansas   1
## 8803              topic              mainstream   1
## 8804             topics               including   1
## 8805              total             catastrophe   1
## 8806              total              corruption   1
## 8807              total               disrepair   1
## 8808              total                  double   1
## 8809              total                inaction   1
## 8810              total                 jobless   1
## 8811              total                     lie   1
## 8812              total             lightweight   1
## 8813              total                     low   1
## 8814              total                meltdown   1
## 8815              total                opposite   1
## 8816              total               political   1
## 8817              total                  puppet   1
## 8818              total                    scam   1
## 8819              total                   stiff   1
## 8820              total            transparency   1
## 8821              total                   waste   1
## 8822              total                  winner   1
## 8823            totally                    anti   1
## 8824            totally                  biased   1
## 8825            totally                  bombed   1
## 8826            totally                  clears   1
## 8827            totally                collapse   1
## 8828            totally             compromised   1
## 8829            totally              controlled   1
## 8830            totally                 corrupt   1
## 8831            totally                  denied   1
## 8832            totally               destroyed   1
## 8833            totally                destroys   1
## 8834            totally          discriminating   1
## 8835            totally               dishonest   1
## 8836            totally                 exposed   1
## 8837            totally                   false   1
## 8838            totally               forgotten   1
## 8839            totally             incompetent   1
## 8840            totally                   legal   1
## 8841            totally                partisan   1
## 8842            totally                 protect   1
## 8843            totally              protecting   1
## 8844            totally                protects   1
## 8845            totally                 redrawn   1
## 8846            totally                    rely   1
## 8847            totally               shattered   1
## 8848            totally        unconstitutional   1
## 8849            totally          uncorroborated   1
## 8850            totally                  unfair   1
## 8851            totally                 unglued   1
## 8852            totally                 unheard   1
## 8853            totally             unqualified   1
## 8854            totally               unrelated   1
## 8855            totally              vindicates   1
## 8856              tough              experience   1
## 8857              tough                   fight   1
## 8858              tough                fighters   1
## 8859              tough                     guy   1
## 8860              tough             immigration   1
## 8861              tough                opponent   1
## 8862              tough                  police   1
## 8863              tough                remember   1
## 8864              tough                  rivers   1
## 8865              tough                sentence   1
## 8866              tough                    time   1
## 8867            tougher                    hand   1
## 8868            tougher             negotiation   1
## 8869            tougher                 process   1
## 8870            tougher                 trading   1
## 8871             touted                    book   1
## 8872              tower                      12   1
## 8873           towering                  cities   1
## 8874               town                     a.g   1
## 8875               town                    hall   1
## 8876           township                    vote   1
## 8877              trade                   abuse   1
## 8878              trade                  center   1
## 8879              trade                  change   1
## 8880              trade                   china   1
## 8881              trade                  france   1
## 8882              trade              negotiates   1
## 8883              trade            organization   1
## 8884              trade               practiced   1
## 8885              trade               practices   1
## 8886              trade                 protect   1
## 8887              trade             retaliation   1
## 8888              trade               surpluses   1
## 8889              trade                 tariffs   1
## 8890              trade                    time   1
## 8891              trade                 ukraine   1
## 8892              trade                    wars   1
## 8893              trade                    wins   1
## 8894            trading                   force   1
## 8895            trading                  stance   1
## 8896        traditional                     tax   1
## 8897            traffic                    jams   1
## 8898        traffickers                    drug   1
## 8899            tragedy                hundreds   1
## 8900             tragic                    hour   1
## 8901             tragic               situation   1
## 8902              train               collision   1
## 8903            trained                  expert   1
## 8904            trained                     gun   1
## 8905            trained           professionals   1
## 8906            trained                security   1
## 8907            trained                teachers   1
## 8908           training              experience   1
## 8909           training                    site   1
## 8910        transaction                 wrongly   1
## 8911       transparency                    told   1
## 8912             travel                     ban   1
## 8913             travel                expenses   1
## 8914        treacherous                    cave   1
## 8915              treat                multiple   1
## 8916            treated                unfairly   1
## 8917            treated                   worse   1
## 8918           treating                   brett   1
## 8919           treating                  people   1
## 8920         tremendous                 courage   1
## 8921         tremendous                   crowd   1
## 8922         tremendous                  damage   1
## 8923         tremendous             foundations   1
## 8924         tremendous                  future   1
## 8925         tremendous                   honor   1
## 8926         tremendous              investment   1
## 8927         tremendous                     job   1
## 8928         tremendous                 leaking   1
## 8929         tremendous                    loss   1
## 8930         tremendous                   perks   1
## 8931         tremendous               political   1
## 8932         tremendous                positive   1
## 8933         tremendous                progress   1
## 8934         tremendous              sacrifices   1
## 8935         tremendous                 setback   1
## 8936         tremendous               taxpayers   1
## 8937         tremendous                    time   1
## 8938         tremendous                  upside   1
## 8939         tremendous                 victory   1
## 8940         tremendous                   voter   1
## 8941         tremendous                     win   1
## 8942       tremendously                positive   1
## 8943               trey                   gowdy   1
## 8944           trillion               bilateral   1
## 8945          trillions                building   1
## 8946               trip               including   1
## 8947              trish                   regan   1
## 8948             troops                  coming   1
## 8949             troops                    lost   1
## 8950               troy             balderson’s   1
## 8951               troy                   loves   1
## 8952               troy                    wins   1
## 8953              truck                business   1
## 8954             trucks                  coming   1
## 8955               true                     bob   1
## 8956               true                champion   1
## 8957               true                   enemy   1
## 8958               true                    fake   1
## 8959               true                 fighter   1
## 8960               true                 freedom   1
## 8961               true                   jesse   1
## 8962               true                 leaders   1
## 8963               true                national   1
## 8964               true                   pride   1
## 8965               true               privilege   1
## 8966               true                    shot   1
## 8967               true                    star   1
## 8968               true               superstar   1
## 8969               true                 tragedy   1
## 8970               true                 warrior   1
## 8971               true                   wayne   1
## 8972              trump                    2017   1
## 8973              trump         accomplishments   1
## 8974              trump        administration’s   1
## 8975              trump                  animus   1
## 8976              trump                approves   1
## 8977              trump                    bias   1
## 8978              trump                 bongino   1
## 8979              trump                   calls   1
## 8980              trump                  carter   1
## 8981              trump               collusion   1
## 8982              trump                     dan   1
## 8983              trump               delivered   1
## 8984              trump                delivers   1
## 8985              trump                 economy   1
## 8986              trump                   feels   1
## 8987              trump                   hater   1
## 8988              trump                  haters   1
## 8989              trump                    i’ve   1
## 8990              trump               imitation   1
## 8991              trump                  impact   1
## 8992              trump               including   1
## 8993              trump           international   1
## 8994              trump                    it’s   1
## 8995              trump                   jared   1
## 8996              trump                     job   1
## 8997              trump                    love   1
## 8998              trump                   magic   1
## 8999              trump                    nice   1
## 9000              trump              obstructed   1
## 9001              trump                   ohr’s   1
## 9002              trump               political   1
## 9003              trump                   polls   1
## 9004              trump              presidency   1
## 9005              trump               recommend   1
## 9006              trump                 remains   1
## 9007              trump                starting   1
## 9008              trump                  that’s   1
## 9009              trump                thunders   1
## 9010              trump                     tom   1
## 9011              trump                  travel   1
## 9012              trump                   trump   1
## 9013              trump               turnberry   1
## 9014              trump                 visited   1
## 9015              trump                   we’ll   1
## 9016              trump                    wins   1
## 9017              trump                   world   1
## 9018              trump                 written   1
## 9019            trump's                approval   1
## 9020            trump's                 economy   1
## 9021            trump’s                     4th   1
## 9022            trump’s            achievements   1
## 9023            trump’s          administration   1
## 9024            trump’s                 foreign   1
## 9025            trump’s                optimism   1
## 9026            trump’s                     tax   1
## 9027            trump’s                triumphs   1
## 9028            trump’s                    wall   1
## 9029              trust                division   1
## 9030            trusted                  people   1
## 9031             tucker                 carlson   1
## 9032            tuesday                   brian   1
## 9033            tuesday                    july   1
## 9034            tuesday                   let’s   1
## 9035            tuesday                november   1
## 9036            tuesday               respected   1
## 9037          tuesday’s                election   1
## 9038            tunnels                airports   1
## 9039             tupelo             mississippi   1
## 9040            turkish               consulate   1
## 9041            turkish                    lira   1
## 9042            turmoil             disfunction   1
## 9043              tweet                    2014   1
## 9044             twelve                  months   1
## 9045            twitter                  shadow   1
## 9046               type                     rat   1
## 9047          typically                     bad   1
## 9048          typically                 written   1
## 9049                u.s                   added   1
## 9050                u.s                    adds   1
## 9051                u.s          administration   1
## 9052                u.s         administrations   1
## 9053                u.s                  andrew   1
## 9054                u.s                    army   1
## 9055                u.s                  asylum   1
## 9056                u.s               attorneys   1
## 9057                u.s                     bid   1
## 9058                u.s                   build   1
## 9059                u.s                   catch   1
## 9060                u.s                consumer   1
## 9061                u.s                 customs   1
## 9062                u.s                 expands   1
## 9063                u.s             foolishness   1
## 9064                u.s                  france   1
## 9065                u.s                   guess   1
## 9066                u.s                  harley   1
## 9067                u.s                   house   1
## 9068                u.s               illegally   1
## 9069                u.s             immigration   1
## 9070                u.s               including   1
## 9071                u.s                    jobs   1
## 9072                u.s                   judge   1
## 9073                u.s                  korean   1
## 9074                u.s                 legally   1
## 9075                u.s                    lost   1
## 9076                u.s                   makes   1
## 9077                u.s                  marine   1
## 9078                u.s                  market   1
## 9079                u.s                 massive   1
## 9080                u.s                   nafta   1
## 9081                u.s             negotiating   1
## 9082                u.s                  pastor   1
## 9083                u.s                 pledges   1
## 9084                u.s                  postal   1
## 9085                u.s               president   1
## 9086                u.s                    reps   1
## 9087                u.s               respected   1
## 9088                u.s                   saved   1
## 9089                u.s                  secret   1
## 9090                u.s                   seeks   1
## 9091                u.s                   sells   1
## 9092                u.s                 senator   1
## 9093                u.s                   south   1
## 9094                u.s                soybeans   1
## 9095                u.s                  spends   1
## 9096                u.s                   spent   1
## 9097                u.s                  stands   1
## 9098                u.s            steelworkers   1
## 9099                u.s                  stocks   1
## 9100                u.s                    stop   1
## 9101                u.s                strongly   1
## 9102                u.s              subsidizes   1
## 9103                u.s                 survive   1
## 9104                u.s                  tariff   1
## 9105                u.s                 tariffs   1
## 9106                u.s                taxpayer   1
## 9107                u.s                 totally   1
## 9108                u.s                   trade   1
## 9109                u.s                  voters   1
## 9110                u.s                warships   1
## 9111                u.s                 women's   1
## 9112              u.s.a                  asylum   1
## 9113              u.s.a                    jobs   1
## 9114              u.s.a                 massive   1
## 9115              u.s.a                  mexico   1
## 9116            ukraine                    isis   1
## 9117            ukraine                  middle   1
## 9118          ukrainian             businessman   1
## 9119           ultimate               sacrifice   1
## 9120            ulysses                   grant   1
## 9121       unacceptable                      46   1
## 9122       unacceptable                  senate   1
## 9123      unaccompanied                  minors   1
## 9124        unannounced                    trip   1
## 9125         unbalanced                  unfair   1
## 9126       unbelievable                   crowd   1
## 9127       unbelievable                jonathan   1
## 9128       unbelievably                   james   1
## 9129       unbelievably                   lucky   1
## 9130        unbreakable                 history   1
## 9131          unchecked                 illegal   1
## 9132   unconstitutional                disaster   1
## 9133     uncontrollable                    arms   1
## 9134     uncorroborated             allegations   1
## 9135      underestimate                   corey   1
## 9136         underlying                strength   1
## 9137         undermines                  public   1
## 9138        understands                 borders   1
## 9139       unemployment                       4   1
## 9140       unemployment                     aid   1
## 9141       unemployment                 filings   1
## 9142       unemployment                   rates   1
## 9143       unemployment                 setting   1
## 9144           unending                 stamina   1
## 9145            unequal                 justice   1
## 9146          unethical                 conduct   1
## 9147             unfair                    jeff   1
## 9148             unfair                    news   1
## 9149             unfair                   price   1
## 9150             unfair                 tariffs   1
## 9151             unfair               treatment   1
## 9152           unfairly               clobbered   1
## 9153           unfairly                     set   1
## 9154         unfettered                   power   1
## 9155           unforced                betrayal   1
## 9156        unfortunate               situation   1
## 9157              union                  charge   1
## 9158              union              commission   1
## 9159              union                deciding   1
## 9160              union                   makes   1
## 9161              union                 nations   1
## 9162              union                  poorly   1
## 9163              union         representatives   1
## 9164              union                  speech   1
## 9165              union               wonderful   1
## 9166              union                 workers   1
## 9167            uniting               americans   1
## 9168              unity            negotiations   1
## 9169          universal              healthcare   1
## 9170        unjustified                   trade   1
## 9171            unknown                 expanse   1
## 9172            unknown                  middle   1
## 9173            unknown                soldiers   1
## 9174             unlike                     bob   1
## 9175             unlike                 michael   1
## 9176          unlimited                   crime   1
## 9177            unnamed                 sources   1
## 9178        unnecessary              regulation   1
## 9179             unpaid             obligations   1
## 9180       unparalleled              innovation   1
## 9181        unpatriotic                 freedom   1
## 9182         unpleasant            consequences   1
## 9183          unpopular                governor   1
## 9184       unpopularity                  credit   1
## 9185      unprecedented                  bigger   1
## 9186      unprecedented                economic   1
## 9187      unprecedented             fundraising   1
## 9188      unprecedented                    jobs   1
## 9189      unprecedented                 meeting   1
## 9190      unprecedented                 success   1
## 9191      unprecedented                  threat   1
## 9192     unquestionably               justified   1
## 9193          unrelated                 charges   1
## 9194          unrelated                     jam   1
## 9195          unrelated                offenses   1
## 9196         unrevealed               conflicts   1
## 9197          unsourced                 stories   1
## 9198        unthinkable              heartbreak   1
## 9199        unthinkable                 unheard   1
## 9200         untruthful             competition   1
## 9201         untruthful                   slime   1
## 9202        unwarranted                   witch   1
## 9203         unwavering              commitment   1
## 9204         unwavering                   faith   1
## 9205           upcoming                      cr   1
## 9206           upcoming                election   1
## 9207           upcoming               hurricane   1
## 9208           upcoming                 primary   1
## 9209           upcoming                   visit   1
## 9210            upholds                   trump   1
## 9211             upside               potential   1
## 9212             upward                  impact   1
## 9213            uranium                speeches   1
## 9214                usa                billions   1
## 9215                usa                 florida   1
## 9216                usa                   nafta   1
## 9217                usa            unemployment   1
## 9218                usa                 winning   1
## 9219            useable                   hurts   1
## 9220              usmca                    sooo   1
## 9221              usmca                    wins   1
## 9222              usual               dishonest   1
## 9223          utilities                     cut   1
## 9224                 va          accountability   1
## 9225                 va                  choice   1
## 9226                 va                  crisis   1
## 9227                 va                 mission   1
## 9228            valerie                 jarrett   1
## 9229              valor          americanheroes   1
## 9230             values                 protect   1
## 9231                vat                     tax   1
## 9232          venezuela               financial   1
## 9233             verify                 results   1
## 9234             vernon                 indiana   1
## 9235             versus                   trump   1
## 9236                vet                  people   1
## 9237            veteran              journalist   1
## 9238            veteran                military   1
## 9239           veterans                 affairs   1
## 9240           veterans                    care   1
## 9241           veterans                  choice   1
## 9242           veterans                     day   1
## 9243           veterans                     god   1
## 9244           veterans                military   1
## 9245           veterans                 service   1
## 9246               vets              caregivers   1
## 9247               vets                  choice   1
## 9248               vets              healthcare   1
## 9249               vets                   henry   1
## 9250               vets                     low   1
## 9251               vets                   lower   1
## 9252               vets                    matt   1
## 9253               vets                   ndsen   1
## 9254               vets                    neal   1
## 9255               vets                opponent   1
## 9256               vets                 running   1
## 9257               vets                   voted   1
## 9258            vibrant                 economy   1
## 9259               vice                chairman   1
## 9260               vice                 premier   1
## 9261            vicious                 accuser   1
## 9262            vicious                  effort   1
## 9263            vicious                     gas   1
## 9264            vicious           prosecutorial   1
## 9265          viciously                 telling   1
## 9266         victimized                    he’s   1
## 9267            victims                involved   1
## 9268             victor                   davis   1
## 9269          victories               including   1
## 9270          victories                   media   1
## 9271            victory                      53   1
## 9272            victory                     god   1
## 9273            victory               yesterday   1
## 9274            vietnam                    pass   1
## 9275            vietnam                   total   1
## 9276         viewership                declined   1
## 9277            viewing               reporting   1
## 9278               vile                democrat   1
## 9279         vindicates                   trump   1
## 9280           violates               antitrust   1
## 9281          violation                 bribery   1
## 9282          violation                  honest   1
## 9283          violation               involving   1
## 9284           violence                     act   1
## 9285           violence                   death   1
## 9286           violence                  grants   1
## 9287           violence                   peace   1
## 9288            violent                 actions   1
## 9289            violent                  crimes   1
## 9290            violent               criminals   1
## 9291            violent                  felons   1
## 9292            violent                  felony   1
## 9293            violent                  french   1
## 9294          violently                 changed   1
## 9295           virginia                    dave   1
## 9296           virginia                     god   1
## 9297           virginia                governor   1
## 9298           virginia                     led   1
## 9299           virginia                 patrick   1
## 9300              voice              portraying   1
## 9301             voices                speaking   1
## 9302             volume                spectrum   1
## 9303               vote                 claudia   1
## 9304               vote              controlled   1
## 9305               vote                   count   1
## 9306               vote                democrat   1
## 9307               vote                  getter   1
## 9308               vote                  here’s   1
## 9309               vote                    josh   1
## 9310               vote                   katie   1
## 9311               vote                 knowing   1
## 9312               vote                   means   1
## 9313               vote               minnesota   1
## 9314               vote                remember   1
## 9315               vote                     rep   1
## 9316               vote                    rick   1
## 9317               vote                   scott   1
## 9318               vote                   steve   1
## 9319               vote              tabulation   1
## 9320               vote               threshold   1
## 9321               vote                 tuesday   1
## 9322               vote                  walker   1
## 9323              voted                   signs   1
## 9324              voter                  energy   1
## 9325              voter                   fraud   1
## 9326             voters                     hit   1
## 9327             voters              nationwide   1
## 9328              votes                   don’t   1
## 9329              votes             fortunately   1
## 9330             voting                      64   1
## 9331             voting                   booth   1
## 9332             voting                   cheat   1
## 9333             voting               tactician   1
## 9334                 vp                  _pence   1
## 9335              wacky                     tom   1
## 9336               wade                 america   1
## 9337               wage                  growth   1
## 9338              wages                    rise   1
## 9339              wages                  rising   1
## 9340              wages                salaries   1
## 9341               wait                    till   1
## 9342            waiting                 forever   1
## 9343           walkaway                walkaway   1
## 9344             walked                  senate   1
## 9345             walker               stapleton   1
## 9346            walking                 merrily   1
## 9347            walking               unimpeded   1
## 9348               wall                 expands   1
## 9349               wall                 funding   1
## 9350               wall                    hire   1
## 9351               wall               including   1
## 9352               wall                  mexico   1
## 9353               wall                prohibit   1
## 9354               wall              prototypes   1
## 9355               wall                  system   1
## 9356               wall                   write   1
## 9357              walls                  fences   1
## 9358              walls               makeshift   1
## 9359               wand                     4.2   1
## 9360                war                      ii   1
## 9361                war            negotiations   1
## 9362                war                 remains   1
## 9363                war              terrorists   1
## 9364            warfare                operator   1
## 9365               warm                  dinner   1
## 9366               warm            introduction   1
## 9367             warner                 brennan   1
## 9368            warrant                officers   1
## 9369           warrants               targeting   1
## 9370             warren                   lines   1
## 9371            warrior                   grant   1
## 9372           warships                    2015   1
## 9373         washington                capitals   1
## 9374         washington             politicians   1
## 9375         washington                   spent   1
## 9376         washington                  tester   1
## 9377         washington                tomorrow   1
## 9378             wasn’t                involved   1
## 9379             wasn’t                   lanny   1
## 9380             wasn’t                  russia   1
## 9381             wasn’t                straight   1
## 9382             wasn’t                    true   1
## 9383              waste                taxpayer   1
## 9384             wasted               procedure   1
## 9385              watch                   bring   1
## 9386              watch                 closely   1
## 9387              watch                   comey   1
## 9388              watch                    fake   1
## 9389              watch                   kanye   1
## 9390              watch                   peter   1
## 9391              watch                saturday   1
## 9392            watched                      da   1
## 9393            watched                     ice   1
## 9394            watched                   north   1
## 9395            watched                   wacky   1
## 9396            watches               carefully   1
## 9397           watching               carefully   1
## 9398           watching                   court   1
## 9399           watching               president   1
## 9400           watching                 screens   1
## 9401              water                  coming   1
## 9402              water                      el   1
## 9403              water                    nice   1
## 9404          watergate                burglary   1
## 9405             waters                   danny   1
## 9406             waters                   nancy   1
## 9407             waving                migrants   1
## 9408              wayne                   chris   1
## 9409               we’d                    save   1
## 9410              we’re                   blown   1
## 9411              we’ve               nominated   1
## 9412              we’ve                proposed   1
## 9413               weak                 borders   1
## 9414               weak                     dem   1
## 9415               weak                 grounds   1
## 9416               weak             immigration   1
## 9417               weak             ineffective   1
## 9418               weak             performance   1
## 9419               weak              politician   1
## 9420            weakest             obstruction   1
## 9421            weakest                recovery   1
## 9422           weakness                millions   1
## 9423             wealth                creation   1
## 9424             wealth                 goodbye   1
## 9425        weaponizing              government   1
## 9426            weapons                talented   1
## 9427          wednesday                    june   1
## 9428               week               extension   1
## 9429               week                    jews   1
## 9430               week                 meeting   1
## 9431               week              tremendous   1
## 9432               week                 walking   1
## 9433             weekly                standard   1
## 9434              weeks                     ago   1
## 9435              weeks               interview   1
## 9436          weinstein                   story   1
## 9437         weissman’s                horrible   1
## 9438            welfare                  reform   1
## 9439            weren’t                    paid   1
## 9440            weren’t               targeting   1
## 9441               west                 florida   1
## 9442                 wh                 sources   1
## 9443             what’s               happening   1
## 9444         whatsoever                    sick   1
## 9445           wheeling                    west   1
## 9446           whitaker                   chief   1
## 9447           whitaker                likewise   1
## 9448              white                 farmers   1
## 9449              white                    flag   1
## 9450              widen                  global   1
## 9451         widespread                  spying   1
## 9452               wife                 700,000   1
## 9453               wife                  ashley   1
## 9454               wife                brigitte   1
## 9455               wife                   molly   1
## 9456               wife                  nellie   1
## 9457             wife’s                campaign   1
## 9458               wild                    bill   1
## 9459            wildest                  dreams   1
## 9460            wildest            expectations   1
## 9461             wilkes                   barre   1
## 9462                win              capitalist   1
## 9463                win                  debate   1
## 9464                win                    gina   1
## 9465                win                    maga   1
## 9466                win                   south   1
## 9467                win                  strong   1
## 9468                win                 supreme   1
## 9469                win                  that’s   1
## 9470                win           unprecedented   1
## 9471                win                 written   1
## 9472               wind                   swept   1
## 9473            windows                   badly   1
## 9474               wing                   media   1
## 9475               wing                     mob   1
## 9476               wing             politicians   1
## 9477            winning                campaign   1
## 9478               wins                     ben   1
## 9479               wins                  praise   1
## 9480             winter                olympics   1
## 9481          wisconsin                  15,000   1
## 9482          wisconsin                 workers   1
## 9483               wise              statements   1
## 9484              witch                   hunts   1
## 9485               wolf                  bombed   1
## 9486              women                 serving   1
## 9487              women                  taking   1
## 9488              women                     won   1
## 9489            women's                  hockey   1
## 9490                won                       8   1
## 9491                won                  choice   1
## 9492                won                     i’m   1
## 9493                won                 lawsuit   1
## 9494                won                   seats   1
## 9495                won                 tonight   1
## 9496              won’t                 approve   1
## 9497              won’t                  forget   1
## 9498              won’t                  happen   1
## 9499              won’t                  settle   1
## 9500              won’t                     sue   1
## 9501              won’t                    vote   1
## 9502          wonderful                      14   1
## 9503          wonderful                    book   1
## 9504          wonderful                    bush   1
## 9505          wonderful                comments   1
## 9506          wonderful               countries   1
## 9507          wonderful                     day   1
## 9508          wonderful                    deal   1
## 9509          wonderful                families   1
## 9510          wonderful               gentlemen   1
## 9511          wonderful                    gift   1
## 9512          wonderful                  harris   1
## 9513          wonderful                   human   1
## 9514          wonderful                    i’ve   1
## 9515          wonderful                 jackson   1
## 9516          wonderful                    life   1
## 9517          wonderful                   music   1
## 9518          wonderful             opportunity   1
## 9519          wonderful                partners   1
## 9520          wonderful                  people   1
## 9521          wonderful               potential   1
## 9522          wonderful                  result   1
## 9523          wonderful                     son   1
## 9524          wonderful                   u.s.a   1
## 9525          wonderful                veterans   1
## 9526          wonderful                    wife   1
## 9527          wonderful                     win   1
## 9528          wonderful                   woman   1
## 9529          wonderful                   words   1
## 9530           woodward             allegations   1
## 9531            woolsey                   fires   1
## 9532               word              apparently   1
## 9533               word                 country   1
## 9534               word                   media   1
## 9535               word                     spy   1
## 9536               word                starting   1
## 9537              words                    fake   1
## 9538              words                    he’s   1
## 9539              words                    it’s   1
## 9540              words                  nelson   1
## 9541              words                 omarosa   1
## 9542              words                 subject   1
## 9543              words               yesterday   1
## 9544             worker                congress   1
## 9545             worker                     pay   1
## 9546            workers                american   1
## 9547            workers                 burdens   1
## 9548            workers               companies   1
## 9549            workers                families   1
## 9550            workers                   let’s   1
## 9551            workers                  people   1
## 9552            workers               shouldn’t   1
## 9553            workers               taxpayers   1
## 9554          workforce                 remains   1
## 9555              world                  autism   1
## 9556              world                 blowing   1
## 9557              world                chairman   1
## 9558              world                     cnn   1
## 9559              world              constantly   1
## 9560              world               countries   1
## 9561              world                  didn’t   1
## 9562              world                    drug   1
## 9563              world                economic   1
## 9564              world                   enjoy   1
## 9565              world            helsinki2018   1
## 9566              world                 history   1
## 9567              world                hundreds   1
## 9568              world               including   1
## 9569              world                laughing   1
## 9570              world                 nations   1
## 9571              world                nctl2018   1
## 9572              world                  people   1
## 9573              world               president   1
## 9574              world          purpleheartday   1
## 9575              world             republicans   1
## 9576              world                     ron   1
## 9577              world                  series   1
## 9578              world                    site   1
## 9579              world                 they’ve   1
## 9580              world                    time   1
## 9581              world                    vote   1
## 9582            world’s                 leading   1
## 9583            world’s                     top   1
## 9584            world’s                   worst   1
## 9585             worlds                 dumbest   1
## 9586          worldwide                 network   1
## 9587              worry                 florida   1
## 9588              worse                 alfonse   1
## 9589              worse                 hightax   1
## 9590              worst                   botch   1
## 9591              worst                     cia   1
## 9592              worst                criminal   1
## 9593              worst               criminals   1
## 9594              worst                    dems   1
## 9595              worst                     hit   1
## 9596              worst                  leader   1
## 9597              worst               polluters   1
## 9598              worst                     run   1
## 9599              worst                  storms   1
## 9600             worthy                opponent   1
## 9601             worthy               successor   1
## 9602           wouldn’t                 approve   1
## 9603           wouldn’t                  matter   1
## 9604           wouldn’t                    play   1
## 9605            wounded                  animal   1
## 9606            wounded                 victims   1
## 9607            wounded                warriors   1
## 9608                wow                  19,000   1
## 9609                wow                      69   1
## 9610                wow               departing   1
## 9611                wow                    john   1
## 9612                wow                    mesa   1
## 9613                wow                  nellie   1
## 9614                wow                     nfl   1
## 9615                wow                 senator   1
## 9616                wow                  strzok   1
## 9617                wow                   watch   1
## 9618                wow                    word   1
## 9619           wrecking                    ball   1
## 9620              write                     bad   1
## 9621              write                 stories   1
## 9622            written                   false   1
## 9623              wrong               direction   1
## 9624         wrongdoing              whatsoever   1
## 9625         wrongfully                 impacts   1
## 9626            wrongly                  abused   1
## 9627            wrongly                    call   1
## 9628            wrongly               destroyed   1
## 9629             wrongs               committed   1
## 9630              wrote             christopher   1
## 9631            wyoming             jobsnotmobs   1
## 9632                 xi                   meant   1
## 9633                 xi                    told   1
## 9634               yale                educated   1
## 9635               yale                     ron   1
## 9636             yankee                 stadium   1
## 9637             year’s                   march   1
## 9638             yearly                   bonus   1
## 9639             yearly             development   1
## 9640             yearly                   trade   1
## 9641          yesterday                     a17   1
## 9642          yesterday                    jobs   1
## 9643        yesterday’s                  closed   1
## 9644        yesterday’s                shooting   1
## 9645        yesterday’s                southern   1
## 9646                yom                 hashoah   1
## 9647               york                 african   1
## 9648               york                   solid   1
## 9649             york’s                    23rd   1
## 9650             yorker                 falsely   1
## 9651             you’re               connected   1
## 9652             you’re                   tired   1
## 9653              youth            unemployment   1
## 9654          youtube’s                      hq   1
## 9655               zone                   trump   1
## 9656              zones                 cowards   1
## 9657              zones                violence   1
## 9658                zte                flourish   1
bigrams_united <- bigrams_filtered %>%
  unite(bigram, word1, word2, sep = " ")

my.df <- data.frame(table(bigrams_united))
my.df <- my.df[order(my.df$Freq, decreasing=TRUE),]
my.df <- my.df[c(1:500),]
head(my.df)
##         bigrams_united Freq
## 3287         fake news  160
## 9465        witch hunt  128
## 6050       north korea   84
## 9426       white house   71
## 5994        news media   56
## 8652 total endorsement   49

With that, we have the data for the bigram cloud.

library(wordcloud2)
wordcloud2(my.df, color="random-light", backgroundColor = "black")

After seeing a few competing renditions, I prefer wordcloud2. One thing to be careful about is scaling. In this case, the most frequent bigram is missing because the ratio makes it too large to fit. With size smaller, it can be made to show. It appears that embedding multiple of these in one post does not render. I will stick with the one correct one.

library(wordcloud2)
hhww <- wordcloud2(my.df, color="random-light", backgroundColor = "black", size = 0.5)
library(widgetframe)
## Loading required package: htmlwidgets
frameWidget(hhww, width=600)

Getting this to work with frame widgets is tricky. I started something below but cannot seem to make it work so I am constrained to one wordcloud2 per document because they rely on underlying html rendering.

library(htmlwidgets)
library(webshot)
library(widgetframe)
hw1 <- wordcloud2(my.df, color="random-light", backgroundColor = "black", size = 0.5)
frameWidget(hw1, width=600)

I think that works quite nicely. The use of jpg for shapes has not worked for me. Nor has letterCloud. I found some code on github that will supposedly solve this but it does not seem to work either. It is supposed to render as an htmlwidget but something about that seems not to work properly.

library(htmlwidgets)
library(webshot)
library(widgetframe)
Ments.Tab <- data.frame(table(Ments))
Ments.Tab <- Ments.Tab[order(Ments.Tab$Freq, decreasing=TRUE),]
my.df.short <- my.df[c(1:40),]
hw1 <- letterCloud(Ments.Tab, "@", size=4, color='random-light')
frameWidget(hw1, width=600)