title: “NewDeepa” author: “Deepa” date: “2/4/2022” output: html_document

DATA 607 Week 1 Assignment - Assignment – Loading Data into a Data Frame

Deepa Sharma

February 6, 2022

Introduction:

The data for this task is taken from fivethirtyeight dataset located @ https://data.fivethirtyeight.com/

The goal of this project is to analyze how the public is taking president Biden’s response to the Coronavirus pandemic.

To perform this analysis, only four columns of data is considered. These columns are end_date of the poll, party affiliation of the respondent, number of approvers and number of disapprovers.

The summary of the data is shown as well.

CovidPolls <- read.csv("https://raw.githubusercontent.com/fivethirtyeight/covid-19-polls/master/covid_approval_polls.csv", stringsAsFactors = FALSE)
colnames(CovidPolls) <- c("end_date", "party", "approve", "disapprove")
summary(CovidPolls)
##    end_date            party             approve           disapprove       
##  Length:3253        Length:3253        Length:3253        Length:3253       
##  Class :character   Class :character   Class :character   Class :character  
##  Mode  :character   Mode  :character   Mode  :character   Mode  :character  
##                                                                             
##                                                                             
##                                                                             
##                                                                             
##        NA                NA                 NA                 NA           
##  Min.   :    55.0   Length:3253        Length:3253        Length:3253       
##  1st Qu.:   386.0   Class :character   Class :character   Class :character  
##  Median :   611.8   Mode  :character   Mode  :character   Mode  :character  
##  Mean   :  2161.0                                                           
##  3rd Qu.:  1162.0                                                           
##  Max.   :325970.0                                                           
##  NA's   :22                                                                 
##      NA               NA                  NA              NA       
##  Mode :logical   Length:3253        Min.   : 1.00   Min.   : 1.00  
##  FALSE:2995      Class :character   1st Qu.:30.00   1st Qu.:29.00  
##  TRUE :242       Mode  :character   Median :42.00   Median :52.00  
##  NA's :16                           Mean   :46.53   Mean   :48.16  
##                                     3rd Qu.:65.00   3rd Qu.:62.00  
##                                     Max.   :98.00   Max.   :98.00  
##                                     NA's   :3       NA's   :15     
##       NA           
##  Length:3253       
##  Class :character  
##  Mode  :character  
##                    
##                    
##                    
## 

The following set of code is used to create a data frame with the above mentioned columns

mydata <- subset(CovidPolls, select = c("end_date", "party", "approve", "disapprove"))
##print(mydata)
df <- data.frame(mydata)
##print (df)

The column names are renamed using the following code. The print of the new data frame is also generated at the end.

names(mydata)[names(mydata)=="end_date"] <- "End_Date"
names(mydata)[names(mydata)=="party"] <- "Party"
names(mydata)[names(mydata)=="approve"] <- "Approve"
names(mydata)[names(mydata)=="disapprove"] <- "Disapprove"
##print (mydata)

The data within the Party column is updated to make it more meaningful (R = Republican, D = Democrat, I = Independent).

library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
mydata <- mydata %>%
  mutate(Party = recode(Party, all = 'All', R = 'Republican', D =  'Democrat', I =  'Independent' ))
print(mydata)
##        End_Date      Party                                       Approve
## 1    2020-02-02 2020-02-04                                        YouGov
## 2    2020-02-02 2020-02-04                                        YouGov
## 3    2020-02-02 2020-02-04                                        YouGov
## 4    2020-02-02 2020-02-04                                        YouGov
## 5    2020-02-07 2020-02-09                               Morning Consult
## 6    2020-02-07 2020-02-09                               Morning Consult
## 7    2020-02-07 2020-02-09                               Morning Consult
## 8    2020-02-07 2020-02-09                               Morning Consult
## 9    2020-02-07 2020-02-09                               Morning Consult
## 10   2020-02-07 2020-02-09                               Morning Consult
## 11   2020-02-07 2020-02-09                               Morning Consult
## 12   2020-02-07 2020-02-09                               Morning Consult
## 13   2020-02-09 2020-02-11                                        YouGov
## 14   2020-02-09 2020-02-11                                        YouGov
## 15   2020-02-09 2020-02-11                                        YouGov
## 16   2020-02-09 2020-02-11                                        YouGov
## 17   2020-02-16 2020-02-18                                        YouGov
## 18   2020-02-16 2020-02-18                                        YouGov
## 19   2020-02-16 2020-02-18                                        YouGov
## 20   2020-02-16 2020-02-18                                        YouGov
## 21   2020-02-23 2020-02-25                                        YouGov
## 22   2020-02-23 2020-02-25                                        YouGov
## 23   2020-02-23 2020-02-25                                        YouGov
## 24   2020-02-23 2020-02-25                                        YouGov
## 25   2020-02-24 2020-02-26                               Morning Consult
## 26   2020-02-24 2020-02-26                               Morning Consult
## 27   2020-02-24 2020-02-26                               Morning Consult
## 28   2020-02-24 2020-02-26                               Morning Consult
## 29   2020-02-26 2020-02-28                                   Harris Poll
## 30   2020-02-26 2020-02-28                                   Harris Poll
## 31   2020-02-26 2020-02-28                                   Harris Poll
## 32   2020-02-26 2020-02-28                                   Harris Poll
## 33   2020-02-26 2020-02-28                                        YouGov
## 34   2020-02-26 2020-02-28                                        YouGov
## 35   2020-02-26 2020-02-28                                        YouGov
## 36   2020-02-26 2020-02-28                                        YouGov
## 37   2020-02-28 2020-03-01                               Morning Consult
## 38   2020-02-28 2020-03-01                               Morning Consult
## 39   2020-02-28 2020-03-01                               Morning Consult
## 40   2020-02-28 2020-03-01                               Morning Consult
## 41   2020-03-01 2020-03-03                                        YouGov
## 42   2020-03-01 2020-03-03                                        YouGov
## 43   2020-03-01 2020-03-03                                        YouGov
## 44   2020-03-01 2020-03-03                                        YouGov
## 45   2020-03-02 2020-03-03                                         Ipsos
## 46   2020-03-02 2020-03-03                                         Ipsos
## 47   2020-03-02 2020-03-03                                         Ipsos
## 48   2020-03-02 2020-03-03                                         Ipsos
## 49   2020-03-03 2020-03-05                               Morning Consult
## 50   2020-03-03 2020-03-05                               Morning Consult
## 51   2020-03-03 2020-03-05                               Morning Consult
## 52   2020-03-03 2020-03-05                               Morning Consult
## 53   2020-03-04 2020-03-07                                          SSRS
## 54   2020-03-04 2020-03-07                                          SSRS
## 55   2020-03-04 2020-03-07                                          SSRS
## 56   2020-03-04 2020-03-07                                          SSRS
## 57   2020-03-02 2020-03-08                                  SurveyMonkey
## 58   2020-03-02 2020-03-08                                  SurveyMonkey
## 59   2020-03-02 2020-03-08                                  SurveyMonkey
## 60   2020-03-02 2020-03-08                                  SurveyMonkey
## 61   2020-03-05 2020-03-08                                    Quinnipiac
## 62   2020-03-05 2020-03-08                                    Quinnipiac
## 63   2020-03-05 2020-03-08                                    Quinnipiac
## 64   2020-03-05 2020-03-08                                    Quinnipiac
## 65   2020-03-06 2020-03-08 Global Strategy Group/GBAO/Navigator Research
## 66   2020-03-06 2020-03-08 Global Strategy Group/GBAO/Navigator Research
## 67   2020-03-06 2020-03-08 Global Strategy Group/GBAO/Navigator Research
## 68   2020-03-06 2020-03-08 Global Strategy Group/GBAO/Navigator Research
## 69   2020-03-06 2020-03-09                               Morning Consult
## 70   2020-03-06 2020-03-09                               Morning Consult
## 71   2020-03-06 2020-03-09                               Morning Consult
## 72   2020-03-06 2020-03-09                               Morning Consult
## 73   2020-03-08 2020-03-09                                       HarrisX
## 74   2020-03-08 2020-03-09                                       HarrisX
## 75   2020-03-08 2020-03-09                                       HarrisX
## 76   2020-03-08 2020-03-09                                       HarrisX
## 77   2020-03-08 2020-03-10                                        YouGov
## 78   2020-03-08 2020-03-10                                        YouGov
## 79   2020-03-08 2020-03-10                                        YouGov
## 80   2020-03-08 2020-03-10                                        YouGov
## 81   2020-03-09 2020-03-10                                         Ipsos
## 82   2020-03-09 2020-03-11                               Change Research
## 83   2020-03-10 2020-03-11                                        YouGov
## 84   2020-03-10 2020-03-11                                        YouGov
## 85   2020-03-10 2020-03-11                                        YouGov
## 86   2020-03-10 2020-03-11                                        YouGov
## 87   2020-03-10 2020-03-12                                        YouGov
## 88   2020-03-10 2020-03-12                                        YouGov
## 89   2020-03-10 2020-03-12                                        YouGov
## 90   2020-03-10 2020-03-12                                        YouGov
## 91   2020-03-11 2020-03-12                                         Ipsos
## 92   2020-03-11 2020-03-12                                         Ipsos
## 93   2020-03-11 2020-03-12                                         Ipsos
## 94   2020-03-11 2020-03-12                                         Ipsos
## 95   2020-03-12 2020-03-12                                     SurveyUSA
## 96   2020-03-12 2020-03-12                                     SurveyUSA
## 97   2020-03-12 2020-03-12                                     SurveyUSA
## 98   2020-03-12 2020-03-12                                     SurveyUSA
## 99   2020-03-11 2020-03-13                       NBC/Wall Street Journal
## 100  2020-03-11 2020-03-13                       NBC/Wall Street Journal
## 101  2020-03-11 2020-03-13                       NBC/Wall Street Journal
## 102  2020-03-11 2020-03-13                       NBC/Wall Street Journal
## 103  2020-03-11 2020-03-13                                       Winston
## 104  2020-03-10 2020-03-14                               Morning Consult
## 105  2020-03-10 2020-03-14                               Morning Consult
## 106  2020-03-10 2020-03-14                               Morning Consult
## 107  2020-03-10 2020-03-14                               Morning Consult
## 108  2020-03-13 2020-03-14                                        Marist
## 109  2020-03-13 2020-03-14                                        Marist
## 110  2020-03-13 2020-03-14                                        Marist
## 111  2020-03-13 2020-03-14                                        Marist
## 112  2020-03-13 2020-03-14                                        Marist
## 113  2020-03-13 2020-03-15                      Hart Research Associates
## 114  2020-03-13 2020-03-15                                        YouGov
## 115  2020-03-13 2020-03-15                                        YouGov
## 116  2020-03-13 2020-03-15                                        YouGov
## 117  2020-03-13 2020-03-15                                        YouGov
## 118  2020-03-14 2020-03-15                                   Harris Poll
## 119  2020-03-14 2020-03-15                                   Harris Poll
## 120  2020-03-14 2020-03-15                                   Harris Poll
## 121  2020-03-14 2020-03-15                                   Harris Poll
## 122  2020-03-13 2020-03-16                               Morning Consult
## 123  2020-03-13 2020-03-16                               Morning Consult
## 124  2020-03-13 2020-03-16                               Morning Consult
## 125  2020-03-13 2020-03-16                               Morning Consult
## 126  2020-03-13 2020-03-16                               Morning Consult
## 127  2020-03-13 2020-03-16                               Morning Consult
## 128  2020-03-13 2020-03-16                               Morning Consult
## 129  2020-03-13 2020-03-16                               Morning Consult
## 130  2020-03-15 2020-03-17                                        YouGov
## 131  2020-03-15 2020-03-17                                        YouGov
## 132  2020-03-15 2020-03-17                                        YouGov
## 133  2020-03-15 2020-03-17                                        YouGov
## 134  2020-03-16 2020-03-17                                         Ipsos
## 135  2020-03-16 2020-03-17                                         Ipsos
## 136  2020-03-16 2020-03-17                                         Ipsos
## 137  2020-03-16 2020-03-17                                         Ipsos
## 138  2020-03-17 2020-03-18                                   Harris Poll
## 139  2020-03-17 2020-03-18                                   Harris Poll
## 140  2020-03-17 2020-03-18                                   Harris Poll
## 141  2020-03-17 2020-03-18                                   Harris Poll
## 142  2020-03-16 2020-03-19                       American Research Group
## 143  2020-03-16 2020-03-19                       American Research Group
## 144  2020-03-16 2020-03-19                       American Research Group
## 145  2020-03-16 2020-03-19                       American Research Group
## 146  2020-03-16 2020-03-19                       American Research Group
## 147  2020-03-18 2020-03-19               Emerson College Polling Society
## 148  2020-03-18 2020-03-19               Emerson College Polling Society
## 149  2020-03-18 2020-03-19               Emerson College Polling Society
## 150  2020-03-18 2020-03-19               Emerson College Polling Society
## 151  2020-03-18 2020-03-19                                         Ipsos
## 152  2020-03-18 2020-03-19                                         Ipsos
## 153  2020-03-18 2020-03-19                                         Ipsos
## 154  2020-03-18 2020-03-19                                         Ipsos
## 155  2020-03-18 2020-03-19                                     SurveyUSA
## 156  2020-03-18 2020-03-19                                     SurveyUSA
## 157  2020-03-18 2020-03-19                                     SurveyUSA
## 158  2020-03-18 2020-03-19                                     SurveyUSA
## 159  2020-03-17 2020-03-20                               Morning Consult
## 160  2020-03-17 2020-03-20                               Morning Consult
## 161  2020-03-17 2020-03-20                               Morning Consult
## 162  2020-03-17 2020-03-20                               Morning Consult
## 163  2020-03-13 2020-03-22                                        Gallup
## 164  2020-03-13 2020-03-22                                        Gallup
## 165  2020-03-13 2020-03-22                                        Gallup
## 166  2020-03-13 2020-03-22                                        Gallup
## 167  2020-03-18 2020-03-22                                   Monmouth U.
## 168  2020-03-18 2020-03-22                                   Monmouth U.
## 169  2020-03-18 2020-03-22                                   Monmouth U.
## 170  2020-03-18 2020-03-22                                   Monmouth U.
## 171  2020-03-19 2020-03-22            Rasmussen (Pulse Opinion Research)
## 172  2020-03-19 2020-03-22            Rasmussen (Pulse Opinion Research)
## 173  2020-03-19 2020-03-22            Rasmussen (Pulse Opinion Research)
## 174  2020-03-19 2020-03-22            Rasmussen (Pulse Opinion Research)
## 175  2020-03-20 2020-03-22                               Morning Consult
## 176  2020-03-20 2020-03-22                               Morning Consult
## 177  2020-03-20 2020-03-22                               Morning Consult
## 178  2020-03-20 2020-03-22                               Morning Consult
## 179  2020-03-20 2020-03-22                               Morning Consult
## 180  2020-03-20 2020-03-22                               Morning Consult
## 181  2020-03-20 2020-03-22                               Morning Consult
## 182  2020-03-20 2020-03-22                               Morning Consult
## 183  2020-03-20 2020-03-22                                        YouGov
## 184  2020-03-20 2020-03-22                                        YouGov
## 185  2020-03-20 2020-03-22                                        YouGov
## 186  2020-03-20 2020-03-22                                        YouGov
## 187  2020-03-21 2020-03-22                                   Harris Poll
## 188  2020-03-21 2020-03-22                                   Harris Poll
## 189  2020-03-21 2020-03-22                                   Harris Poll
## 190  2020-03-21 2020-03-22                                   Harris Poll
## 191  2020-03-20 2020-03-23 Global Strategy Group/GBAO/Navigator Research
## 192  2020-03-20 2020-03-23 Global Strategy Group/GBAO/Navigator Research
## 193  2020-03-20 2020-03-23 Global Strategy Group/GBAO/Navigator Research
## 194  2020-03-20 2020-03-23 Global Strategy Group/GBAO/Navigator Research
## 195  2020-03-21 2020-03-23                                        YouGov
## 196  2020-03-21 2020-03-23                                        YouGov
## 197  2020-03-21 2020-03-23                                        YouGov
## 198  2020-03-21 2020-03-23                                        YouGov
## 199  2020-03-22 2020-03-23                                       HarrisX
## 200  2020-03-22 2020-03-23                                       HarrisX
## 201  2020-03-22 2020-03-23                                       HarrisX
## 202  2020-03-22 2020-03-23                                       HarrisX
## 203  2020-03-23 2020-03-23                  Redfield & Wilton Strategies
## 204  2020-03-18 2020-03-24                                         Ipsos
## 205  2020-03-18 2020-03-24                                         Ipsos
## 206  2020-03-18 2020-03-24                                         Ipsos
## 207  2020-03-18 2020-03-24                                         Ipsos
## 208  2020-03-19 2020-03-24                                           Pew
## 209  2020-03-19 2020-03-24                                           Pew
## 210  2020-03-19 2020-03-24                                           Pew
## 211  2020-03-20 2020-03-24                              Echelon Insights
## 212  2020-03-21 2020-03-24                                      Fox News
## 213  2020-03-21 2020-03-24                                      Fox News
## 214  2020-03-21 2020-03-24                                      Fox News
## 215  2020-03-21 2020-03-24                                      Fox News
## 216  2020-03-21 2020-03-24 Global Strategy Group/GBAO/Navigator Research
## 217  2020-03-21 2020-03-24 Global Strategy Group/GBAO/Navigator Research
## 218  2020-03-21 2020-03-24 Global Strategy Group/GBAO/Navigator Research
## 219  2020-03-21 2020-03-24 Global Strategy Group/GBAO/Navigator Research
## 220  2020-03-22 2020-03-24                                      Benenson
## 221  2020-03-22 2020-03-24                                        YouGov
## 222  2020-03-22 2020-03-24                                        YouGov
## 223  2020-03-22 2020-03-24                                        YouGov
## 224  2020-03-22 2020-03-24                                        YouGov
## 225  2020-03-19 2020-03-25                                   Nationscape
## 226  2020-03-19 2020-03-25                                   Nationscape
## 227  2020-03-19 2020-03-25                                   Nationscape
## 228  2020-03-19 2020-03-25                                   Nationscape
## 229  2020-03-22 2020-03-25                                           ABC
## 230  2020-03-22 2020-03-25                                           ABC
## 231  2020-03-22 2020-03-25                                           ABC
## 232  2020-03-22 2020-03-25                                           ABC
## 233  2020-03-22 2020-03-25 Global Strategy Group/GBAO/Navigator Research
## 234  2020-03-22 2020-03-25 Global Strategy Group/GBAO/Navigator Research
## 235  2020-03-22 2020-03-25 Global Strategy Group/GBAO/Navigator Research
## 236  2020-03-22 2020-03-25 Global Strategy Group/GBAO/Navigator Research
## 237  2020-03-24 2020-03-25                              Echelon Insights
## 238  2020-03-24 2020-03-25                                     SurveyUSA
## 239  2020-03-24 2020-03-25                                     SurveyUSA
## 240  2020-03-24 2020-03-25                                     SurveyUSA
## 241  2020-03-24 2020-03-25                                     SurveyUSA
## 242  2020-03-23 2020-03-26 Global Strategy Group/GBAO/Navigator Research
## 243  2020-03-23 2020-03-26 Global Strategy Group/GBAO/Navigator Research
## 244  2020-03-23 2020-03-26 Global Strategy Group/GBAO/Navigator Research
## 245  2020-03-23 2020-03-26 Global Strategy Group/GBAO/Navigator Research
## 246  2020-03-23 2020-03-26                                    McLaughlin
## 247  2020-03-23 2020-03-26                                    McLaughlin
## 248  2020-03-23 2020-03-26                                    McLaughlin
## 249  2020-03-23 2020-03-26                                    McLaughlin
## 250  2020-03-24 2020-03-26                                   Harris Poll
## 251  2020-03-24 2020-03-26                                   Harris Poll
## 252  2020-03-24 2020-03-26                                   Harris Poll
## 253  2020-03-24 2020-03-26                                   Harris Poll
## 254  2020-03-24 2020-03-26                                   Harris Poll
## 255  2020-03-24 2020-03-26                                   Harris Poll
## 256  2020-03-24 2020-03-26                                   Harris Poll
## 257  2020-03-24 2020-03-26                                   Harris Poll
## 258  2020-03-24 2020-03-26                               Morning Consult
## 259  2020-03-24 2020-03-26                               Morning Consult
## 260  2020-03-24 2020-03-26                               Morning Consult
## 261  2020-03-24 2020-03-26                               Morning Consult
## 262  2020-03-24 2020-03-26                              Zogby (Internet)
## 263  2020-03-25 2020-03-26                                        YouGov
## 264  2020-03-25 2020-03-26                                        YouGov
## 265  2020-03-25 2020-03-26                                        YouGov
## 266  2020-03-25 2020-03-26                                        YouGov
## 267  2020-03-24 2020-03-27 Global Strategy Group/GBAO/Navigator Research
## 268  2020-03-24 2020-03-27 Global Strategy Group/GBAO/Navigator Research
## 269  2020-03-24 2020-03-27 Global Strategy Group/GBAO/Navigator Research
## 270  2020-03-24 2020-03-27 Global Strategy Group/GBAO/Navigator Research
## 271  2020-03-26 2020-03-27                                       HarrisX
## 272  2020-03-26 2020-03-27                                       HarrisX
## 273  2020-03-26 2020-03-27                                       HarrisX
## 274  2020-03-26 2020-03-27                                       HarrisX
## 275  2020-03-21 2020-03-28                 Firehouse Strategies/Ã\230ptimus
## 276  2020-03-26 2020-03-28                               Change Research
## 277  2020-03-26 2020-03-29                                       AP-NORC
## 278  2020-03-26 2020-03-29                                       AP-NORC
## 279  2020-03-26 2020-03-29                                       AP-NORC
## 280  2020-03-26 2020-03-29                                       AP-NORC
## 281  2020-03-26 2020-03-29                               Change Research
## 282  2020-03-26 2020-03-29                               Change Research
## 283  2020-03-26 2020-03-29                               Change Research
## 284  2020-03-26 2020-03-29                               Change Research
## 285  2020-03-26 2020-03-29                         Research America Inc.
## 286  2020-03-26 2020-03-29                         Research America Inc.
## 287  2020-03-26 2020-03-29                         Research America Inc.
## 288  2020-03-27 2020-03-29                               Morning Consult
## 289  2020-03-27 2020-03-29                               Morning Consult
## 290  2020-03-27 2020-03-29                               Morning Consult
## 291  2020-03-27 2020-03-29                               Morning Consult
## 292  2020-03-27 2020-03-29                               Morning Consult
## 293  2020-03-27 2020-03-29                               Morning Consult
## 294  2020-03-27 2020-03-29                               Morning Consult
## 295  2020-03-27 2020-03-29                               Morning Consult
## 296  2020-03-25 2020-03-30 Global Strategy Group/GBAO/Navigator Research
## 297  2020-03-25 2020-03-30 Global Strategy Group/GBAO/Navigator Research
## 298  2020-03-25 2020-03-30 Global Strategy Group/GBAO/Navigator Research
## 299  2020-03-25 2020-03-30 Global Strategy Group/GBAO/Navigator Research
## 300  2020-03-25 2020-03-30                      Kaiser Family Foundation
## 301  2020-03-25 2020-03-30                      Kaiser Family Foundation
## 302  2020-03-25 2020-03-30                      Kaiser Family Foundation
## 303  2020-03-25 2020-03-30                      Kaiser Family Foundation
## 304  2020-03-25 2020-03-30                                        YouGov
## 305  2020-03-25 2020-03-30                                        YouGov
## 306  2020-03-25 2020-03-30                                        YouGov
## 307  2020-03-25 2020-03-30                                        YouGov
## 308  2020-03-26 2020-03-30                                        YouGov
## 309  2020-03-27 2020-03-30                                        Selzer
## 310  2020-03-27 2020-03-30                                        Selzer
## 311  2020-03-27 2020-03-30                                        Selzer
## 312  2020-03-27 2020-03-30                                        Selzer
## 313  2020-03-28 2020-03-30                                        Civiqs
## 314  2020-03-28 2020-03-30                                        Civiqs
## 315  2020-03-28 2020-03-30                                        Civiqs
## 316  2020-03-28 2020-03-30                                        Civiqs
## 317  2020-03-26 2020-03-31 Global Strategy Group/GBAO/Navigator Research
## 318  2020-03-26 2020-03-31 Global Strategy Group/GBAO/Navigator Research
## 319  2020-03-26 2020-03-31 Global Strategy Group/GBAO/Navigator Research
## 320  2020-03-26 2020-03-31 Global Strategy Group/GBAO/Navigator Research
## 321  2020-03-27 2020-03-31                                        YouGov
## 322  2020-03-27 2020-03-31                                        YouGov
## 323  2020-03-27 2020-03-31                                        YouGov
## 324  2020-03-27 2020-03-31                                        YouGov
## 325  2020-03-29 2020-03-31                                        YouGov
## 326  2020-03-29 2020-03-31                                        YouGov
## 327  2020-03-29 2020-03-31                                        YouGov
## 328  2020-03-29 2020-03-31                                        YouGov
## 329  2020-03-30 2020-03-31                                         Ipsos
## 330  2020-03-26 2020-04-01                                   Nationscape
## 331  2020-03-26 2020-04-01                                   Nationscape
## 332  2020-03-26 2020-04-01                                   Nationscape
## 333  2020-03-26 2020-04-01                                   Nationscape
## 334  2020-03-27 2020-04-01 Global Strategy Group/GBAO/Navigator Research
## 335  2020-03-27 2020-04-01 Global Strategy Group/GBAO/Navigator Research
## 336  2020-03-27 2020-04-01 Global Strategy Group/GBAO/Navigator Research
## 337  2020-03-27 2020-04-01 Global Strategy Group/GBAO/Navigator Research
## 338  2020-03-29 2020-04-01                                      IBD/TIPP
## 339  2020-03-29 2020-04-01                                      IBD/TIPP
## 340  2020-03-31 2020-04-01                               Morning Consult
## 341  2020-03-31 2020-04-01                               Morning Consult
## 342  2020-03-31 2020-04-01                               Morning Consult
## 343  2020-03-31 2020-04-01                               Morning Consult
## 344  2020-03-31 2020-04-01                                        YouGov
## 345  2020-03-31 2020-04-01                                        YouGov
## 346  2020-03-31 2020-04-01                                        YouGov
## 347  2020-03-31 2020-04-01                                        YouGov
## 348  2020-03-30 2020-04-02 Global Strategy Group/GBAO/Navigator Research
## 349  2020-03-30 2020-04-02 Global Strategy Group/GBAO/Navigator Research
## 350  2020-03-30 2020-04-02 Global Strategy Group/GBAO/Navigator Research
## 351  2020-03-30 2020-04-02 Global Strategy Group/GBAO/Navigator Research
## 352  2020-04-01 2020-04-02                                         Ipsos
## 353  2020-04-01 2020-04-02                                         Ipsos
## 354  2020-04-01 2020-04-02                                         Ipsos
## 355  2020-04-01 2020-04-02                                         Ipsos
## 356  2020-03-31 2020-04-03 Global Strategy Group/GBAO/Navigator Research
## 357  2020-03-31 2020-04-03 Global Strategy Group/GBAO/Navigator Research
## 358  2020-03-31 2020-04-03 Global Strategy Group/GBAO/Navigator Research
## 359  2020-03-31 2020-04-03 Global Strategy Group/GBAO/Navigator Research
## 360  2020-04-01 2020-04-03                                       Winston
## 361  2020-04-02 2020-04-03                               Change Research
## 362  2020-04-02 2020-04-03                                       HarrisX
## 363  2020-04-02 2020-04-03                                       HarrisX
## 364  2020-04-02 2020-04-03                                       HarrisX
## 365  2020-04-02 2020-04-03                                       HarrisX
## 366  2020-03-28 2020-04-04                 Firehouse Strategies/Ã\230ptimus
## 367  2020-04-03 2020-04-04                                        YouGov
## 368  2020-04-03 2020-04-04                                        YouGov
## 369  2020-04-03 2020-04-04                                        YouGov
## 370  2020-04-03 2020-04-04                                        YouGov
## 371  2020-04-03 2020-04-05                      Hart Research Associates
## 372  2020-04-03 2020-04-05                      Hart Research Associates
## 373  2020-04-03 2020-04-05                      Hart Research Associates
## 374  2020-04-03 2020-04-05                      Hart Research Associates
## 375  2020-04-03 2020-04-05                               Morning Consult
## 376  2020-04-03 2020-04-05                               Morning Consult
## 377  2020-04-03 2020-04-05                               Morning Consult
## 378  2020-04-03 2020-04-05                               Morning Consult
## 379  2020-04-03 2020-04-05                               Morning Consult
## 380  2020-04-03 2020-04-05                               Morning Consult
## 381  2020-04-03 2020-04-05                               Morning Consult
## 382  2020-04-03 2020-04-05                               Morning Consult
## 383  2020-04-01 2020-04-06 Global Strategy Group/GBAO/Navigator Research
## 384  2020-04-01 2020-04-06 Global Strategy Group/GBAO/Navigator Research
## 385  2020-04-01 2020-04-06 Global Strategy Group/GBAO/Navigator Research
## 386  2020-04-01 2020-04-06 Global Strategy Group/GBAO/Navigator Research
## 387  2020-04-02 2020-04-06                                    Quinnipiac
## 388  2020-04-02 2020-04-06                                    Quinnipiac
## 389  2020-04-02 2020-04-06                                    Quinnipiac
## 390  2020-04-02 2020-04-06                                    Quinnipiac
## 391  2020-04-03 2020-04-06  CNBC/Hart Research/Public Opinion Strategies
## 392  2020-04-03 2020-04-06                                          SSRS
## 393  2020-04-03 2020-04-06                                          SSRS
## 394  2020-04-03 2020-04-06                                          SSRS
## 395  2020-04-03 2020-04-06                                          SSRS
## 396  2020-04-02 2020-04-07 Global Strategy Group/GBAO/Navigator Research
## 397  2020-04-02 2020-04-07 Global Strategy Group/GBAO/Navigator Research
## 398  2020-04-02 2020-04-07 Global Strategy Group/GBAO/Navigator Research
## 399  2020-04-02 2020-04-07 Global Strategy Group/GBAO/Navigator Research
## 400  2020-04-03 2020-04-07                                   Monmouth U.
## 401  2020-04-03 2020-04-07                                   Monmouth U.
## 402  2020-04-03 2020-04-07                                   Monmouth U.
## 403  2020-04-03 2020-04-07                                   Monmouth U.
## 404  2020-04-04 2020-04-07                                      Fox News
## 405  2020-04-04 2020-04-07                                      Fox News
## 406  2020-04-04 2020-04-07                                      Fox News
## 407  2020-04-04 2020-04-07                                      Fox News
## 408  2020-04-05 2020-04-07                                        YouGov
## 409  2020-04-05 2020-04-07                                        YouGov
## 410  2020-04-05 2020-04-07                                        YouGov
## 411  2020-04-05 2020-04-07                                        YouGov
## 412  2020-04-06 2020-04-07                                         Ipsos
## 413  2020-04-06 2020-04-07                                     SurveyUSA
## 414  2020-04-06 2020-04-07                                     SurveyUSA
## 415  2020-04-06 2020-04-07                                     SurveyUSA
## 416  2020-04-06 2020-04-07                                     SurveyUSA
## 417  2020-04-06 2020-04-07                                        YouGov
## 418  2020-04-06 2020-04-07                                        YouGov
## 419  2020-04-06 2020-04-07                                        YouGov
## 420  2020-04-06 2020-04-07                                        YouGov
## 421  2020-04-02 2020-04-08                                   Nationscape
## 422  2020-04-02 2020-04-08                                   Nationscape
## 423  2020-04-02 2020-04-08                                   Nationscape
## 424  2020-04-02 2020-04-08                                   Nationscape
## 425  2020-04-03 2020-04-08 Global Strategy Group/GBAO/Navigator Research
## 426  2020-04-03 2020-04-08 Global Strategy Group/GBAO/Navigator Research
## 427  2020-04-03 2020-04-08 Global Strategy Group/GBAO/Navigator Research
## 428  2020-04-03 2020-04-08 Global Strategy Group/GBAO/Navigator Research
## 429  2020-04-05 2020-04-09 Global Strategy Group/GBAO/Navigator Research
## 430  2020-04-05 2020-04-09 Global Strategy Group/GBAO/Navigator Research
## 431  2020-04-05 2020-04-09 Global Strategy Group/GBAO/Navigator Research
## 432  2020-04-05 2020-04-09 Global Strategy Group/GBAO/Navigator Research
## 433  2020-04-07 2020-04-09                                        YouGov
## 434  2020-04-07 2020-04-09                                        YouGov
## 435  2020-04-07 2020-04-09                                        YouGov
## 436  2020-04-07 2020-04-09                                        YouGov
## 437  2020-04-08 2020-04-09                                         Ipsos
## 438  2020-04-08 2020-04-09                                         Ipsos
## 439  2020-04-08 2020-04-09                                         Ipsos
## 440  2020-04-08 2020-04-09                                         Ipsos
## 441  2020-04-04 2020-04-10                 Firehouse Strategies/Ã\230ptimus
## 442  2020-04-06 2020-04-10                         Global Strategy Group
## 443  2020-04-07 2020-04-10 Global Strategy Group/GBAO/Navigator Research
## 444  2020-04-07 2020-04-10 Global Strategy Group/GBAO/Navigator Research
## 445  2020-04-07 2020-04-10 Global Strategy Group/GBAO/Navigator Research
## 446  2020-04-07 2020-04-10 Global Strategy Group/GBAO/Navigator Research
## 447  2020-04-08 2020-04-11                                   TargetSmart
## 448  2020-04-08 2020-04-11                                   TargetSmart
## 449  2020-04-08 2020-04-11                                   TargetSmart
## 450  2020-04-08 2020-04-11                                   TargetSmart
## 451  2020-04-06 2020-04-12                                  SurveyMonkey
## 452  2020-04-06 2020-04-12                                  SurveyMonkey
## 453  2020-04-06 2020-04-12                                  SurveyMonkey
## 454  2020-04-06 2020-04-12                                  SurveyMonkey
## 455  2020-04-10 2020-04-12                               Morning Consult
## 456  2020-04-10 2020-04-12                               Morning Consult
## 457  2020-04-10 2020-04-12                               Morning Consult
## 458  2020-04-10 2020-04-12                               Morning Consult
## 459  2020-04-10 2020-04-12                               Morning Consult
## 460  2020-04-10 2020-04-12                               Morning Consult
## 461  2020-04-10 2020-04-12                               Morning Consult
## 462  2020-04-10 2020-04-12                               Morning Consult
## 463  2020-04-10 2020-04-12                                        YouGov
## 464  2020-04-10 2020-04-12                                        YouGov
## 465  2020-04-10 2020-04-12                                        YouGov
## 466  2020-04-10 2020-04-12                                        YouGov
## 467  2020-04-08 2020-04-13 Global Strategy Group/GBAO/Navigator Research
## 468  2020-04-08 2020-04-13 Global Strategy Group/GBAO/Navigator Research
## 469  2020-04-08 2020-04-13 Global Strategy Group/GBAO/Navigator Research
## 470  2020-04-08 2020-04-13 Global Strategy Group/GBAO/Navigator Research
## 471  2020-04-08 2020-04-13                                          SSRS
## 472  2020-04-08 2020-04-13                                          SSRS
## 473  2020-04-08 2020-04-13                                          SSRS
## 474  2020-04-08 2020-04-13                                          SSRS
## 475  2020-04-10 2020-04-13                                       HarrisX
## 476  2020-04-10 2020-04-13                                       HarrisX
## 477  2020-04-10 2020-04-13                                       HarrisX
## 478  2020-04-10 2020-04-13                                       HarrisX
## 479  2020-04-07 2020-04-14                 Firehouse Strategies/Ã\230ptimus
## 480  2020-04-09 2020-04-14 Global Strategy Group/GBAO/Navigator Research
## 481  2020-04-09 2020-04-14 Global Strategy Group/GBAO/Navigator Research
## 482  2020-04-09 2020-04-14 Global Strategy Group/GBAO/Navigator Research
## 483  2020-04-09 2020-04-14 Global Strategy Group/GBAO/Navigator Research
## 484  2020-04-10 2020-04-14                      Hart Research Associates
## 485  2020-04-11 2020-04-14                                        Civiqs
## 486  2020-04-11 2020-04-14                                        Civiqs
## 487  2020-04-11 2020-04-14                                        Civiqs
## 488  2020-04-11 2020-04-14                                        Civiqs
## 489  2020-04-12 2020-04-14                                        YouGov
## 490  2020-04-12 2020-04-14                                        YouGov
## 491  2020-04-12 2020-04-14                                        YouGov
## 492  2020-04-12 2020-04-14                                        YouGov
## 493  2020-04-13 2020-04-14                                         Ipsos
## 494  2020-04-14 2020-04-14                             Data for Progress
## 495  2020-04-14 2020-04-14                             Data for Progress
## 496  2020-04-14 2020-04-14                             Data for Progress
## 497  2020-04-09 2020-04-15                                   Nationscape
## 498  2020-04-09 2020-04-15                                   Nationscape
## 499  2020-04-09 2020-04-15                                   Nationscape
## 500  2020-04-09 2020-04-15                                   Nationscape
## 501  2020-04-10 2020-04-15 Global Strategy Group/GBAO/Navigator Research
## 502  2020-04-10 2020-04-15 Global Strategy Group/GBAO/Navigator Research
## 503  2020-04-10 2020-04-15 Global Strategy Group/GBAO/Navigator Research
## 504  2020-04-10 2020-04-15 Global Strategy Group/GBAO/Navigator Research
## 505  2020-04-13 2020-04-15                               Change Research
## 506  2020-04-13 2020-04-15                       NBC/Wall Street Journal
## 507  2020-04-13 2020-04-16                                          GBAO
## 508  2020-04-13 2020-04-16 Global Strategy Group/GBAO/Navigator Research
## 509  2020-04-13 2020-04-16 Global Strategy Group/GBAO/Navigator Research
## 510  2020-04-13 2020-04-16 Global Strategy Group/GBAO/Navigator Research
## 511  2020-04-13 2020-04-16 Global Strategy Group/GBAO/Navigator Research
## 512  2020-04-14 2020-04-16                                   Harris Poll
## 513  2020-04-14 2020-04-16                                   Harris Poll
## 514  2020-04-14 2020-04-16                                   Harris Poll
## 515  2020-04-14 2020-04-16                                   Harris Poll
## 516  2020-04-15 2020-04-16                                         Ipsos
## 517  2020-04-15 2020-04-16                                         Ipsos
## 518  2020-04-15 2020-04-16                                         Ipsos
## 519  2020-04-15 2020-04-16                                         Ipsos
## 520  2020-04-14 2020-04-17 Global Strategy Group/GBAO/Navigator Research
## 521  2020-04-14 2020-04-17 Global Strategy Group/GBAO/Navigator Research
## 522  2020-04-14 2020-04-17 Global Strategy Group/GBAO/Navigator Research
## 523  2020-04-14 2020-04-17 Global Strategy Group/GBAO/Navigator Research
## 524  2020-04-11 2020-04-18                 Firehouse Strategies/Ã\230ptimus
## 525  2020-04-17 2020-04-18                               Change Research
## 526  2020-04-14 2020-04-19        University of Maryland/Washington Post
## 527  2020-04-14 2020-04-19        University of Maryland/Washington Post
## 528  2020-04-14 2020-04-19        University of Maryland/Washington Post
## 529  2020-04-14 2020-04-19        University of Maryland/Washington Post
## 530  2020-04-15 2020-04-19                                    McLaughlin
## 531  2020-04-15 2020-04-19                                    McLaughlin
## 532  2020-04-15 2020-04-19                                    McLaughlin
## 533  2020-04-15 2020-04-19                                    McLaughlin
## 534  2020-04-17 2020-04-19                               Morning Consult
## 535  2020-04-17 2020-04-19                               Morning Consult
## 536  2020-04-17 2020-04-19                               Morning Consult
## 537  2020-04-17 2020-04-19                               Morning Consult
## 538  2020-04-17 2020-04-19                                        YouGov
## 539  2020-04-17 2020-04-19                                        YouGov
## 540  2020-04-17 2020-04-19                                        YouGov
## 541  2020-04-17 2020-04-19                                        YouGov
## 542  2020-04-17 2020-04-19                                        YouGov
## 543  2020-04-17 2020-04-19                                        YouGov
## 544  2020-04-17 2020-04-19                                        YouGov
## 545  2020-04-17 2020-04-19                                        YouGov
## 546  2020-04-18 2020-04-19                               Morning Consult
## 547  2020-04-18 2020-04-19                               Morning Consult
## 548  2020-04-18 2020-04-19                               Morning Consult
## 549  2020-04-18 2020-04-19                               Morning Consult
## 550  2020-04-19 2020-04-19                                 Climate Nexus
## 551  2020-04-19 2020-04-19                                 Climate Nexus
## 552  2020-04-19 2020-04-19                                 Climate Nexus
## 553  2020-04-19 2020-04-19                                 Climate Nexus
## 554  2020-04-15 2020-04-20 Global Strategy Group/GBAO/Navigator Research
## 555  2020-04-15 2020-04-20 Global Strategy Group/GBAO/Navigator Research
## 556  2020-04-15 2020-04-20 Global Strategy Group/GBAO/Navigator Research
## 557  2020-04-15 2020-04-20 Global Strategy Group/GBAO/Navigator Research
## 558  2020-04-16 2020-04-20                                       AP-NORC
## 559  2020-04-16 2020-04-20                                       AP-NORC
## 560  2020-04-16 2020-04-20                                       AP-NORC
## 561  2020-04-16 2020-04-20                                       AP-NORC
## 562  2020-04-17 2020-04-20                       American Research Group
## 563  2020-04-17 2020-04-20                       American Research Group
## 564  2020-04-17 2020-04-20                       American Research Group
## 565  2020-04-17 2020-04-20                       American Research Group
## 566  2020-04-19 2020-04-20                                       HarrisX
## 567  2020-04-19 2020-04-20                                       HarrisX
## 568  2020-04-19 2020-04-20                                       HarrisX
## 569  2020-04-19 2020-04-20                                       HarrisX
## 570  2020-04-14 2020-04-21                 Firehouse Strategies/Ã\230ptimus
## 571  2020-04-15 2020-04-21                                         Ipsos
## 572  2020-04-16 2020-04-21 Global Strategy Group/GBAO/Navigator Research
## 573  2020-04-16 2020-04-21 Global Strategy Group/GBAO/Navigator Research
## 574  2020-04-16 2020-04-21 Global Strategy Group/GBAO/Navigator Research
## 575  2020-04-16 2020-04-21 Global Strategy Group/GBAO/Navigator Research
## 576  2020-04-18 2020-04-21                              Echelon Insights
## 577  2020-04-19 2020-04-21                                        YouGov
## 578  2020-04-19 2020-04-21                                        YouGov
## 579  2020-04-19 2020-04-21                                        YouGov
## 580  2020-04-19 2020-04-21                                        YouGov
## 581  2020-04-21 2020-04-21                             Data for Progress
## 582  2020-04-21 2020-04-21                             Data for Progress
## 583  2020-04-21 2020-04-21                             Data for Progress
## 584  2020-04-21 2020-04-21                  Redfield & Wilton Strategies
## 585  2020-04-16 2020-04-22                                   Nationscape
## 586  2020-04-16 2020-04-22                                   Nationscape
## 587  2020-04-16 2020-04-22                                   Nationscape
## 588  2020-04-16 2020-04-22                                   Nationscape
## 589  2020-04-17 2020-04-22 Global Strategy Group/GBAO/Navigator Research
## 590  2020-04-17 2020-04-22 Global Strategy Group/GBAO/Navigator Research
## 591  2020-04-17 2020-04-22 Global Strategy Group/GBAO/Navigator Research
## 592  2020-04-17 2020-04-22 Global Strategy Group/GBAO/Navigator Research
## 593  2020-04-20 2020-04-22                                        YouGov
## 594  2020-04-20 2020-04-22                                        YouGov
## 595  2020-04-20 2020-04-22                                        YouGov
## 596  2020-04-20 2020-04-22                                        YouGov
## 597  2020-04-20 2020-04-23 Global Strategy Group/GBAO/Navigator Research
## 598  2020-04-20 2020-04-23 Global Strategy Group/GBAO/Navigator Research
## 599  2020-04-20 2020-04-23 Global Strategy Group/GBAO/Navigator Research
## 600  2020-04-20 2020-04-23 Global Strategy Group/GBAO/Navigator Research
## 601  2020-04-21 2020-04-24 Global Strategy Group/GBAO/Navigator Research
## 602  2020-04-21 2020-04-24 Global Strategy Group/GBAO/Navigator Research
## 603  2020-04-21 2020-04-24 Global Strategy Group/GBAO/Navigator Research
## 604  2020-04-21 2020-04-24 Global Strategy Group/GBAO/Navigator Research
## 605  2020-04-18 2020-04-25                 Firehouse Strategies/Ã\230ptimus
## 606  2020-04-18 2020-04-25                 Firehouse Strategies/Ã\230ptimus
## 607  2020-04-18 2020-04-25                 Firehouse Strategies/Ã\230ptimus
## 608  2020-04-18 2020-04-25                 Firehouse Strategies/Ã\230ptimus
## 609  2020-04-21 2020-04-25                                       Suffolk
## 610  2020-04-21 2020-04-25                                       Suffolk
## 611  2020-04-21 2020-04-25                                       Suffolk
## 612  2020-04-21 2020-04-25                                       Suffolk
## 613  2020-04-17 2020-04-26                                  PureSpectrum
## 614  2020-04-17 2020-04-26                                  PureSpectrum
## 615  2020-04-17 2020-04-26                                  PureSpectrum
## 616  2020-04-17 2020-04-26                                  PureSpectrum
## 617  2020-04-21 2020-04-26                                        Marist
## 618  2020-04-21 2020-04-26                                        Marist
## 619  2020-04-21 2020-04-26                                        Marist
## 620  2020-04-21 2020-04-26                                        Marist
## 621  2020-04-21 2020-04-26                                        Marist
## 622  2020-04-21 2020-04-26        University of Maryland/Washington Post
## 623  2020-04-21 2020-04-26        University of Maryland/Washington Post
## 624  2020-04-21 2020-04-26        University of Maryland/Washington Post
## 625  2020-04-21 2020-04-26        University of Maryland/Washington Post
## 626  2020-04-24 2020-04-26                               Morning Consult
## 627  2020-04-24 2020-04-26                               Morning Consult
## 628  2020-04-24 2020-04-26                               Morning Consult
## 629  2020-04-24 2020-04-26                               Morning Consult
## 630  2020-04-24 2020-04-26                               Morning Consult
## 631  2020-04-24 2020-04-26                               Morning Consult
## 632  2020-04-24 2020-04-26                               Morning Consult
## 633  2020-04-24 2020-04-26                               Morning Consult
## 634  2020-04-24 2020-04-26                                        YouGov
## 635  2020-04-24 2020-04-26                                        YouGov
## 636  2020-04-24 2020-04-26                                        YouGov
## 637  2020-04-24 2020-04-26                                        YouGov
## 638  2020-04-22 2020-04-27 Global Strategy Group/GBAO/Navigator Research
## 639  2020-04-22 2020-04-27 Global Strategy Group/GBAO/Navigator Research
## 640  2020-04-22 2020-04-27 Global Strategy Group/GBAO/Navigator Research
## 641  2020-04-22 2020-04-27 Global Strategy Group/GBAO/Navigator Research
## 642  2020-04-14 2020-04-28                                        Gallup
## 643  2020-04-14 2020-04-28                                        Gallup
## 644  2020-04-14 2020-04-28                                        Gallup
## 645  2020-04-14 2020-04-28                                        Gallup
## 646  2020-04-21 2020-04-28                 Firehouse Strategies/Ã\230ptimus
## 647  2020-04-21 2020-04-28                 Firehouse Strategies/Ã\230ptimus
## 648  2020-04-21 2020-04-28                 Firehouse Strategies/Ã\230ptimus
## 649  2020-04-21 2020-04-28                 Firehouse Strategies/Ã\230ptimus
## 650  2020-04-23 2020-04-28 Global Strategy Group/GBAO/Navigator Research
## 651  2020-04-23 2020-04-28 Global Strategy Group/GBAO/Navigator Research
## 652  2020-04-23 2020-04-28 Global Strategy Group/GBAO/Navigator Research
## 653  2020-04-23 2020-04-28 Global Strategy Group/GBAO/Navigator Research
## 654  2020-04-26 2020-04-28               Emerson College Polling Society
## 655  2020-04-26 2020-04-28               Emerson College Polling Society
## 656  2020-04-26 2020-04-28               Emerson College Polling Society
## 657  2020-04-26 2020-04-28               Emerson College Polling Society
## 658  2020-04-26 2020-04-28                                        YouGov
## 659  2020-04-26 2020-04-28                                        YouGov
## 660  2020-04-26 2020-04-28                                        YouGov
## 661  2020-04-26 2020-04-28                                        YouGov
## 662  2020-04-27 2020-04-28                                       Winston
## 663  2020-04-28 2020-04-28                             Data for Progress
## 664  2020-04-28 2020-04-28                             Data for Progress
## 665  2020-04-28 2020-04-28                             Data for Progress
## 666  2020-04-23 2020-04-29                                   Nationscape
## 667  2020-04-23 2020-04-29                                   Nationscape
## 668  2020-04-23 2020-04-29                                   Nationscape
## 669  2020-04-23 2020-04-29                                   Nationscape
## 670  2020-04-24 2020-04-29 Global Strategy Group/GBAO/Navigator Research
## 671  2020-04-24 2020-04-29 Global Strategy Group/GBAO/Navigator Research
## 672  2020-04-24 2020-04-29 Global Strategy Group/GBAO/Navigator Research
## 673  2020-04-24 2020-04-29 Global Strategy Group/GBAO/Navigator Research
## 674  2020-04-25 2020-04-29                               Change Research
## 675  2020-04-25 2020-04-29                               Change Research
## 676  2020-04-25 2020-04-29                               Change Research
## 677  2020-04-25 2020-04-29                               Change Research
## 678  2020-04-26 2020-04-29                                      IBD/TIPP
## 679  2020-04-27 2020-04-29                                         Ipsos
## 680  2020-04-27 2020-04-30 Global Strategy Group/GBAO/Navigator Research
## 681  2020-04-27 2020-04-30 Global Strategy Group/GBAO/Navigator Research
## 682  2020-04-27 2020-04-30 Global Strategy Group/GBAO/Navigator Research
## 683  2020-04-27 2020-04-30 Global Strategy Group/GBAO/Navigator Research
## 684  2020-04-29 2020-04-30                                         Ipsos
## 685  2020-04-29 2020-04-30                                         Ipsos
## 686  2020-04-29 2020-04-30                                         Ipsos
## 687  2020-04-29 2020-04-30                                         Ipsos
## 688  2020-04-28 2020-05-01 Global Strategy Group/GBAO/Navigator Research
## 689  2020-04-28 2020-05-01 Global Strategy Group/GBAO/Navigator Research
## 690  2020-04-28 2020-05-01 Global Strategy Group/GBAO/Navigator Research
## 691  2020-04-28 2020-05-01 Global Strategy Group/GBAO/Navigator Research
## 692  2020-04-25 2020-05-02                 Firehouse Strategies/Ã\230ptimus
## 693  2020-04-25 2020-05-02                 Firehouse Strategies/Ã\230ptimus
## 694  2020-04-25 2020-05-02                 Firehouse Strategies/Ã\230ptimus
## 695  2020-04-25 2020-05-02                 Firehouse Strategies/Ã\230ptimus
## 696  2020-04-28 2020-05-03        University of Maryland/Washington Post
## 697  2020-04-28 2020-05-03        University of Maryland/Washington Post
## 698  2020-04-28 2020-05-03        University of Maryland/Washington Post
## 699  2020-04-28 2020-05-03        University of Maryland/Washington Post
## 700  2020-05-01 2020-05-03                               Change Research
## 701  2020-05-01 2020-05-03                               Morning Consult
## 702  2020-05-01 2020-05-03                               Morning Consult
## 703  2020-05-01 2020-05-03                               Morning Consult
## 704  2020-05-01 2020-05-03                               Morning Consult
## 705  2020-05-01 2020-05-03                                        YouGov
## 706  2020-05-01 2020-05-03                                        YouGov
## 707  2020-05-01 2020-05-03                                        YouGov
## 708  2020-05-01 2020-05-03                                        YouGov
## 709  2020-05-02 2020-05-03                               Morning Consult
## 710  2020-05-02 2020-05-03                               Morning Consult
## 711  2020-05-02 2020-05-03                               Morning Consult
## 712  2020-05-02 2020-05-03                               Morning Consult
## 713  2020-04-27 2020-05-04                                         Ipsos
## 714  2020-04-27 2020-05-04                                         Ipsos
## 715  2020-04-27 2020-05-04                                         Ipsos
## 716  2020-04-27 2020-05-04                                         Ipsos
## 717  2020-04-29 2020-05-04 Global Strategy Group/GBAO/Navigator Research
## 718  2020-04-29 2020-05-04 Global Strategy Group/GBAO/Navigator Research
## 719  2020-04-29 2020-05-04 Global Strategy Group/GBAO/Navigator Research
## 720  2020-04-29 2020-05-04 Global Strategy Group/GBAO/Navigator Research
## 721  2020-04-30 2020-05-04                                   Monmouth U.
## 722  2020-04-30 2020-05-04                                   Monmouth U.
## 723  2020-04-30 2020-05-04                                   Monmouth U.
## 724  2020-04-30 2020-05-04                                   Monmouth U.
## 725  2020-04-28 2020-05-05                 Firehouse Strategies/Ã\230ptimus
## 726  2020-04-28 2020-05-05                 Firehouse Strategies/Ã\230ptimus
## 727  2020-04-28 2020-05-05                 Firehouse Strategies/Ã\230ptimus
## 728  2020-04-28 2020-05-05                 Firehouse Strategies/Ã\230ptimus
## 729  2020-04-29 2020-05-05                                           Pew
## 730  2020-04-29 2020-05-05                                           Pew
## 731  2020-04-29 2020-05-05                                           Pew
## 732  2020-04-30 2020-05-05 Global Strategy Group/GBAO/Navigator Research
## 733  2020-04-30 2020-05-05 Global Strategy Group/GBAO/Navigator Research
## 734  2020-04-30 2020-05-05 Global Strategy Group/GBAO/Navigator Research
## 735  2020-04-30 2020-05-05 Global Strategy Group/GBAO/Navigator Research
## 736  2020-05-02 2020-05-05                                        Civiqs
## 737  2020-05-02 2020-05-05                                        Civiqs
## 738  2020-05-02 2020-05-05                                        Civiqs
## 739  2020-05-02 2020-05-05                                        Civiqs
## 740  2020-05-03 2020-05-05                                        YouGov
## 741  2020-05-03 2020-05-05                                        YouGov
## 742  2020-05-03 2020-05-05                                        YouGov
## 743  2020-05-03 2020-05-05                                        YouGov
## 744  2020-05-04 2020-05-05                                         Ipsos
## 745  2020-05-04 2020-05-05                                        YouGov
## 746  2020-05-04 2020-05-05                                        YouGov
## 747  2020-05-04 2020-05-05                                        YouGov
## 748  2020-05-04 2020-05-05                                        YouGov
## 749  2020-05-05 2020-05-05                             Data for Progress
## 750  2020-05-05 2020-05-05                             Data for Progress
## 751  2020-05-05 2020-05-05                             Data for Progress
## 752  2020-04-30 2020-05-06                                   Nationscape
## 753  2020-04-30 2020-05-06                                   Nationscape
## 754  2020-04-30 2020-05-06                                   Nationscape
## 755  2020-04-30 2020-05-06                                   Nationscape
## 756  2020-05-01 2020-05-06 Global Strategy Group/GBAO/Navigator Research
## 757  2020-05-01 2020-05-06 Global Strategy Group/GBAO/Navigator Research
## 758  2020-05-01 2020-05-06 Global Strategy Group/GBAO/Navigator Research
## 759  2020-05-01 2020-05-06 Global Strategy Group/GBAO/Navigator Research
## 760  2020-05-06 2020-05-06                                       HarrisX
## 761  2020-05-04 2020-05-07 Global Strategy Group/GBAO/Navigator Research
## 762  2020-05-04 2020-05-07 Global Strategy Group/GBAO/Navigator Research
## 763  2020-05-04 2020-05-07 Global Strategy Group/GBAO/Navigator Research
## 764  2020-05-04 2020-05-07 Global Strategy Group/GBAO/Navigator Research
## 765  2020-05-06 2020-05-07                                         Ipsos
## 766  2020-05-06 2020-05-07                                         Ipsos
## 767  2020-05-06 2020-05-07                                         Ipsos
## 768  2020-05-06 2020-05-07                                         Ipsos
## 769  2020-05-05 2020-05-08 Global Strategy Group/GBAO/Navigator Research
## 770  2020-05-05 2020-05-08 Global Strategy Group/GBAO/Navigator Research
## 771  2020-05-05 2020-05-08 Global Strategy Group/GBAO/Navigator Research
## 772  2020-05-05 2020-05-08 Global Strategy Group/GBAO/Navigator Research
## 773  2020-05-02 2020-05-09                 Firehouse Strategies/Ã\230ptimus
## 774  2020-05-02 2020-05-09                 Firehouse Strategies/Ã\230ptimus
## 775  2020-05-02 2020-05-09                 Firehouse Strategies/Ã\230ptimus
## 776  2020-05-02 2020-05-09                 Firehouse Strategies/Ã\230ptimus
## 777  2020-05-04 2020-05-09                         Global Strategy Group
## 778  2020-05-08 2020-05-09                  Redfield & Wilton Strategies
## 779  2020-05-05 2020-05-10        University of Maryland/Washington Post
## 780  2020-05-05 2020-05-10        University of Maryland/Washington Post
## 781  2020-05-05 2020-05-10        University of Maryland/Washington Post
## 782  2020-05-05 2020-05-10        University of Maryland/Washington Post
## 783  2020-05-07 2020-05-10                                          SSRS
## 784  2020-05-07 2020-05-10                                          SSRS
## 785  2020-05-07 2020-05-10                                          SSRS
## 786  2020-05-07 2020-05-10                                          SSRS
## 787  2020-05-08 2020-05-10                               Morning Consult
## 788  2020-05-08 2020-05-10                               Morning Consult
## 789  2020-05-08 2020-05-10                               Morning Consult
## 790  2020-05-08 2020-05-10                               Morning Consult
## 791  2020-05-08 2020-05-10                               Morning Consult
## 792  2020-05-08 2020-05-10                               Morning Consult
## 793  2020-05-08 2020-05-10                               Morning Consult
## 794  2020-05-08 2020-05-10                               Morning Consult
## 795  2020-05-08 2020-05-10                                        YouGov
## 796  2020-05-08 2020-05-10                                        YouGov
## 797  2020-05-08 2020-05-10                                        YouGov
## 798  2020-05-08 2020-05-10                                        YouGov
## 799  2020-05-06 2020-05-11 Global Strategy Group/GBAO/Navigator Research
## 800  2020-05-06 2020-05-11 Global Strategy Group/GBAO/Navigator Research
## 801  2020-05-06 2020-05-11 Global Strategy Group/GBAO/Navigator Research
## 802  2020-05-06 2020-05-11 Global Strategy Group/GBAO/Navigator Research
## 803  2020-05-05 2020-05-12                 Firehouse Strategies/Ã\230ptimus
## 804  2020-05-05 2020-05-12                 Firehouse Strategies/Ã\230ptimus
## 805  2020-05-05 2020-05-12                 Firehouse Strategies/Ã\230ptimus
## 806  2020-05-05 2020-05-12                 Firehouse Strategies/Ã\230ptimus
## 807  2020-05-07 2020-05-12 Global Strategy Group/GBAO/Navigator Research
## 808  2020-05-07 2020-05-12 Global Strategy Group/GBAO/Navigator Research
## 809  2020-05-07 2020-05-12 Global Strategy Group/GBAO/Navigator Research
## 810  2020-05-07 2020-05-12 Global Strategy Group/GBAO/Navigator Research
## 811  2020-05-10 2020-05-12                                        YouGov
## 812  2020-05-10 2020-05-12                                        YouGov
## 813  2020-05-10 2020-05-12                                        YouGov
## 814  2020-05-10 2020-05-12                                        YouGov
## 815  2020-05-11 2020-05-12                                         Ipsos
## 816  2020-05-12 2020-05-12                             Data for Progress
## 817  2020-05-12 2020-05-12                             Data for Progress
## 818  2020-05-12 2020-05-12                             Data for Progress
## 819  2020-05-07 2020-05-13                                   Nationscape
## 820  2020-05-07 2020-05-13                                   Nationscape
## 821  2020-05-07 2020-05-13                                   Nationscape
## 822  2020-05-07 2020-05-13                                   Nationscape
## 823  2020-05-08 2020-05-13 Global Strategy Group/GBAO/Navigator Research
## 824  2020-05-08 2020-05-13 Global Strategy Group/GBAO/Navigator Research
## 825  2020-05-08 2020-05-13 Global Strategy Group/GBAO/Navigator Research
## 826  2020-05-08 2020-05-13 Global Strategy Group/GBAO/Navigator Research
## 827  2020-05-11 2020-05-13                                        YouGov
## 828  2020-05-11 2020-05-13                                        YouGov
## 829  2020-05-11 2020-05-13                                        YouGov
## 830  2020-05-11 2020-05-13                                        YouGov
## 831  2020-05-11 2020-05-14 Global Strategy Group/GBAO/Navigator Research
## 832  2020-05-11 2020-05-14 Global Strategy Group/GBAO/Navigator Research
## 833  2020-05-11 2020-05-14 Global Strategy Group/GBAO/Navigator Research
## 834  2020-05-11 2020-05-14 Global Strategy Group/GBAO/Navigator Research
## 835  2020-05-13 2020-05-14                                       HarrisX
## 836  2020-05-13 2020-05-14                                       HarrisX
## 837  2020-05-13 2020-05-14                                       HarrisX
## 838  2020-05-13 2020-05-14                                       HarrisX
## 839  2020-05-13 2020-05-14                                   Harris Poll
## 840  2020-05-13 2020-05-14                                   Harris Poll
## 841  2020-05-13 2020-05-14                                   Harris Poll
## 842  2020-05-13 2020-05-14                                   Harris Poll
## 843  2020-05-12 2020-05-15 Global Strategy Group/GBAO/Navigator Research
## 844  2020-05-12 2020-05-15 Global Strategy Group/GBAO/Navigator Research
## 845  2020-05-12 2020-05-15 Global Strategy Group/GBAO/Navigator Research
## 846  2020-05-12 2020-05-15 Global Strategy Group/GBAO/Navigator Research
## 847  2020-05-09 2020-05-16                 Firehouse Strategies/Ã\230ptimus
## 848  2020-05-09 2020-05-16                 Firehouse Strategies/Ã\230ptimus
## 849  2020-05-09 2020-05-16                 Firehouse Strategies/Ã\230ptimus
## 850  2020-05-09 2020-05-16                 Firehouse Strategies/Ã\230ptimus
## 851  2020-05-15 2020-05-17                               Change Research
## 852  2020-05-15 2020-05-17                               Morning Consult
## 853  2020-05-15 2020-05-17                               Morning Consult
## 854  2020-05-15 2020-05-17                               Morning Consult
## 855  2020-05-15 2020-05-17                               Morning Consult
## 856  2020-05-15 2020-05-17                                        YouGov
## 857  2020-05-15 2020-05-17                                        YouGov
## 858  2020-05-15 2020-05-17                                        YouGov
## 859  2020-05-15 2020-05-17                                        YouGov
## 860  2020-05-13 2020-05-18                      Kaiser Family Foundation
## 861  2020-05-13 2020-05-18                      Kaiser Family Foundation
## 862  2020-05-13 2020-05-18                      Kaiser Family Foundation
## 863  2020-05-13 2020-05-18                      Kaiser Family Foundation
## 864  2020-05-14 2020-05-18                                       AP-NORC
## 865  2020-05-14 2020-05-18                                       AP-NORC
## 866  2020-05-14 2020-05-18                                       AP-NORC
## 867  2020-05-14 2020-05-18                                       AP-NORC
## 868  2020-05-14 2020-05-18                                    Quinnipiac
## 869  2020-05-14 2020-05-18                                    Quinnipiac
## 870  2020-05-14 2020-05-18                                    Quinnipiac
## 871  2020-05-14 2020-05-18                                    Quinnipiac
## 872  2020-05-15 2020-05-18 Global Strategy Group/GBAO/Navigator Research
## 873  2020-05-15 2020-05-18 Global Strategy Group/GBAO/Navigator Research
## 874  2020-05-15 2020-05-18 Global Strategy Group/GBAO/Navigator Research
## 875  2020-05-15 2020-05-18 Global Strategy Group/GBAO/Navigator Research
## 876  2020-05-15 2020-05-18                               Morning Consult
## 877  2020-05-15 2020-05-18                               Morning Consult
## 878  2020-05-15 2020-05-18                               Morning Consult
## 879  2020-05-15 2020-05-18                               Morning Consult
## 880  2020-05-12 2020-05-19                 Firehouse Strategies/Ã\230ptimus
## 881  2020-05-12 2020-05-19                 Firehouse Strategies/Ã\230ptimus
## 882  2020-05-12 2020-05-19                 Firehouse Strategies/Ã\230ptimus
## 883  2020-05-12 2020-05-19                 Firehouse Strategies/Ã\230ptimus
## 884  2020-05-17 2020-05-19                                        YouGov
## 885  2020-05-17 2020-05-19                                        YouGov
## 886  2020-05-17 2020-05-19                                        YouGov
## 887  2020-05-17 2020-05-19                                        YouGov
## 888  2020-05-18 2020-05-19                                         Ipsos
## 889  2020-05-19 2020-05-19                             Data for Progress
## 890  2020-05-19 2020-05-19                             Data for Progress
## 891  2020-05-19 2020-05-19                             Data for Progress
## 892  2020-05-14 2020-05-20                                   Nationscape
## 893  2020-05-14 2020-05-20                                   Nationscape
## 894  2020-05-14 2020-05-20                                   Nationscape
## 895  2020-05-14 2020-05-20                                   Nationscape
## 896  2020-05-17 2020-05-20                                      Fox News
## 897  2020-05-17 2020-05-20                                      Fox News
## 898  2020-05-17 2020-05-20                                      Fox News
## 899  2020-05-17 2020-05-20                                      Fox News
## 900  2020-05-17 2020-05-20                       American Research Group
## 901  2020-05-17 2020-05-20                       American Research Group
## 902  2020-05-17 2020-05-20                       American Research Group
## 903  2020-05-17 2020-05-20                       American Research Group
## 904  2020-05-18 2020-05-20                              Echelon Insights
## 905  2020-05-20 2020-05-21                                         Ipsos
## 906  2020-05-20 2020-05-21                                         Ipsos
## 907  2020-05-20 2020-05-21                                         Ipsos
## 908  2020-05-20 2020-05-21                                         Ipsos
## 909  2020-05-20 2020-05-21                                        YouGov
## 910  2020-05-20 2020-05-21                                        YouGov
## 911  2020-05-20 2020-05-21                                        YouGov
## 912  2020-05-20 2020-05-21                                        YouGov
## 913  2020-05-16 2020-05-23                 Firehouse Strategies/Ã\230ptimus
## 914  2020-05-16 2020-05-23                 Firehouse Strategies/Ã\230ptimus
## 915  2020-05-16 2020-05-23                 Firehouse Strategies/Ã\230ptimus
## 916  2020-05-16 2020-05-23                 Firehouse Strategies/Ã\230ptimus
## 917  2020-05-21 2020-05-24                                       Winston
## 918  2020-05-22 2020-05-24                                        YouGov
## 919  2020-05-22 2020-05-24                                        YouGov
## 920  2020-05-22 2020-05-24                                        YouGov
## 921  2020-05-22 2020-05-24                                        YouGov
## 922  2020-05-20 2020-05-25                           Fairleigh Dickinson
## 923  2020-05-20 2020-05-25                           Fairleigh Dickinson
## 924  2020-05-20 2020-05-25                           Fairleigh Dickinson
## 925  2020-05-20 2020-05-25                           Fairleigh Dickinson
## 926  2020-05-21 2020-05-25 Global Strategy Group/GBAO/Navigator Research
## 927  2020-05-21 2020-05-25 Global Strategy Group/GBAO/Navigator Research
## 928  2020-05-21 2020-05-25 Global Strategy Group/GBAO/Navigator Research
## 929  2020-05-21 2020-05-25 Global Strategy Group/GBAO/Navigator Research
## 930  2020-05-21 2020-05-25                               Morning Consult
## 931  2020-05-21 2020-05-25                               Morning Consult
## 932  2020-05-21 2020-05-25                               Morning Consult
## 933  2020-05-21 2020-05-25                               Morning Consult
## 934  2020-05-19 2020-05-26                 Firehouse Strategies/Ã\230ptimus
## 935  2020-05-19 2020-05-26                 Firehouse Strategies/Ã\230ptimus
## 936  2020-05-19 2020-05-26                 Firehouse Strategies/Ã\230ptimus
## 937  2020-05-19 2020-05-26                 Firehouse Strategies/Ã\230ptimus
## 938  2020-05-21 2020-05-26                                    McLaughlin
## 939  2020-05-21 2020-05-26                                    McLaughlin
## 940  2020-05-21 2020-05-26                                    McLaughlin
## 941  2020-05-21 2020-05-26                                    McLaughlin
## 942  2020-05-22 2020-05-26                               Morning Consult
## 943  2020-05-22 2020-05-26                               Morning Consult
## 944  2020-05-22 2020-05-26                               Morning Consult
## 945  2020-05-22 2020-05-26                               Morning Consult
## 946  2020-05-23 2020-05-26                                        YouGov
## 947  2020-05-23 2020-05-26                                        YouGov
## 948  2020-05-23 2020-05-26                                        YouGov
## 949  2020-05-23 2020-05-26                                        YouGov
## 950  2020-05-26 2020-05-26                             Data for Progress
## 951  2020-05-26 2020-05-26                             Data for Progress
## 952  2020-05-26 2020-05-26                             Data for Progress
## 953  2020-05-20 2020-05-27                                         Ipsos
## 954  2020-05-21 2020-05-27                                   Nationscape
## 955  2020-05-21 2020-05-27                                   Nationscape
## 956  2020-05-21 2020-05-27                                   Nationscape
## 957  2020-05-21 2020-05-27                                   Nationscape
## 958  2020-05-21 2020-05-27                                   TargetSmart
## 959  2020-05-21 2020-05-27                                   TargetSmart
## 960  2020-05-21 2020-05-27                                   TargetSmart
## 961  2020-05-21 2020-05-27                                   TargetSmart
## 962  2020-05-25 2020-05-28                                           ABC
## 963  2020-05-25 2020-05-28                                           ABC
## 964  2020-05-25 2020-05-28                                           ABC
## 965  2020-05-25 2020-05-28                                           ABC
## 966  2020-05-23 2020-05-30                                      Ã\230ptimus
## 967  2020-05-23 2020-05-30                                      Ã\230ptimus
## 968  2020-05-23 2020-05-30                                      Ã\230ptimus
## 969  2020-05-23 2020-05-30                                      Ã\230ptimus
## 970  2020-05-29 2020-05-30                                        YouGov
## 971  2020-05-29 2020-05-30                                        YouGov
## 972  2020-05-29 2020-05-30                                        YouGov
## 973  2020-05-29 2020-05-30                                        YouGov
## 974  2020-05-29 2020-05-31                               Change Research
## 975  2020-05-29 2020-05-31                                        YouGov
## 976  2020-05-29 2020-05-31                                        YouGov
## 977  2020-05-29 2020-05-31                                        YouGov
## 978  2020-05-29 2020-05-31                                        YouGov
## 979  2020-05-28 2020-06-01 Global Strategy Group/GBAO/Navigator Research
## 980  2020-05-28 2020-06-01 Global Strategy Group/GBAO/Navigator Research
## 981  2020-05-28 2020-06-01 Global Strategy Group/GBAO/Navigator Research
## 982  2020-05-28 2020-06-01 Global Strategy Group/GBAO/Navigator Research
## 983  2020-05-28 2020-06-01                                   Monmouth U.
## 984  2020-05-28 2020-06-01                                   Monmouth U.
## 985  2020-05-28 2020-06-01                                   Monmouth U.
## 986  2020-05-28 2020-06-01                                   Monmouth U.
## 987  2020-05-29 2020-06-01                               Morning Consult
## 988  2020-05-29 2020-06-01                               Morning Consult
## 989  2020-05-29 2020-06-01                               Morning Consult
## 990  2020-05-29 2020-06-01                               Morning Consult
## 991  2020-05-29 2020-06-01                               Morning Consult
## 992  2020-05-29 2020-06-01                               Morning Consult
## 993  2020-05-29 2020-06-01                               Morning Consult
## 994  2020-05-29 2020-06-01                               Morning Consult
## 995  2020-05-29 2020-06-01                                        YouGov
## 996  2020-05-29 2020-06-01                                        YouGov
## 997  2020-05-29 2020-06-01                                        YouGov
## 998  2020-05-29 2020-06-01                                        YouGov
## 999  2020-05-26 2020-06-02                                      Ã\230ptimus
## 1000 2020-05-26 2020-06-02                                      Ã\230ptimus
## 1001 2020-05-26 2020-06-02                                      Ã\230ptimus
## 1002 2020-05-26 2020-06-02                                      Ã\230ptimus
## 1003 2020-05-28 2020-06-02                       NBC/Wall Street Journal
## 1004 2020-05-31 2020-06-02                                        YouGov
## 1005 2020-05-31 2020-06-02                                        YouGov
## 1006 2020-05-31 2020-06-02                                        YouGov
## 1007 2020-05-31 2020-06-02                                        YouGov
## 1008 2020-06-01 2020-06-02                                         Ipsos
## 1009 2020-05-28 2020-06-03                                   Nationscape
## 1010 2020-05-28 2020-06-03                                   Nationscape
## 1011 2020-05-28 2020-06-03                                   Nationscape
## 1012 2020-05-28 2020-06-03                                   Nationscape
## 1013 2020-05-31 2020-06-03                                      IBD/TIPP
## 1014 2020-06-01 2020-06-03                                        Civiqs
## 1015 2020-06-01 2020-06-03                                        Civiqs
## 1016 2020-06-01 2020-06-03                                        Civiqs
## 1017 2020-06-01 2020-06-03                                        Civiqs
## 1018 2020-05-28 2020-06-04                                        Gallup
## 1019 2020-05-28 2020-06-04                                        Gallup
## 1020 2020-05-28 2020-06-04                                        Gallup
## 1021 2020-05-28 2020-06-04                                        Gallup
## 1022 2020-06-03 2020-06-04                                         Ipsos
## 1023 2020-06-03 2020-06-04                                         Ipsos
## 1024 2020-06-03 2020-06-04                                         Ipsos
## 1025 2020-06-03 2020-06-04                                         Ipsos
## 1026 2020-05-21 2020-06-05                                          NORC
## 1027 2020-06-02 2020-06-05                                          SSRS
## 1028 2020-06-02 2020-06-05                                          SSRS
## 1029 2020-06-02 2020-06-05                                          SSRS
## 1030 2020-06-02 2020-06-05                                          SSRS
## 1031 2020-05-30 2020-06-06                                      Ã\230ptimus
## 1032 2020-05-30 2020-06-06                                      Ã\230ptimus
## 1033 2020-05-30 2020-06-06                                      Ã\230ptimus
## 1034 2020-05-30 2020-06-06                                      Ã\230ptimus
## 1035 2020-06-01 2020-06-07                                  SurveyMonkey
## 1036 2020-06-01 2020-06-07                                  SurveyMonkey
## 1037 2020-06-01 2020-06-07                                  SurveyMonkey
## 1038 2020-06-01 2020-06-07                                  SurveyMonkey
## 1039 2020-06-05 2020-06-07                               Morning Consult
## 1040 2020-06-05 2020-06-07                               Morning Consult
## 1041 2020-06-05 2020-06-07                               Morning Consult
## 1042 2020-06-05 2020-06-07                               Morning Consult
## 1043 2020-06-05 2020-06-07                                        YouGov
## 1044 2020-06-05 2020-06-07                                        YouGov
## 1045 2020-06-05 2020-06-07                                        YouGov
## 1046 2020-06-05 2020-06-07                                        YouGov
## 1047 2020-06-06 2020-06-07                               Morning Consult
## 1048 2020-06-06 2020-06-07                               Morning Consult
## 1049 2020-06-06 2020-06-07                               Morning Consult
## 1050 2020-06-06 2020-06-07                               Morning Consult
## 1051 2020-06-07 2020-06-07                                     MSR Group
## 1052 2020-06-04 2020-06-08 Global Strategy Group/GBAO/Navigator Research
## 1053 2020-06-04 2020-06-08 Global Strategy Group/GBAO/Navigator Research
## 1054 2020-06-04 2020-06-08 Global Strategy Group/GBAO/Navigator Research
## 1055 2020-06-04 2020-06-08 Global Strategy Group/GBAO/Navigator Research
## 1056 2020-06-02 2020-06-09                                      Ã\230ptimus
## 1057 2020-06-02 2020-06-09                                      Ã\230ptimus
## 1058 2020-06-02 2020-06-09                                      Ã\230ptimus
## 1059 2020-06-02 2020-06-09                                      Ã\230ptimus
## 1060 2020-06-07 2020-06-09                                        YouGov
## 1061 2020-06-07 2020-06-09                                        YouGov
## 1062 2020-06-07 2020-06-09                                        YouGov
## 1063 2020-06-07 2020-06-09                                        YouGov
## 1064 2020-06-08 2020-06-09                                         Ipsos
## 1065 2020-06-08 2020-06-09                  Redfield & Wilton Strategies
## 1066 2020-06-09 2020-06-09                             Data for Progress
## 1067 2020-06-09 2020-06-09                             Data for Progress
## 1068 2020-06-09 2020-06-09                             Data for Progress
## 1069 2020-06-04 2020-06-10                                   Nationscape
## 1070 2020-06-04 2020-06-10                                   Nationscape
## 1071 2020-06-04 2020-06-10                                   Nationscape
## 1072 2020-06-04 2020-06-10                                   Nationscape
## 1073 2020-06-08 2020-06-10                                       HarrisX
## 1074 2020-06-08 2020-06-10                                       HarrisX
## 1075 2020-06-08 2020-06-10                                       HarrisX
## 1076 2020-06-08 2020-06-10                                       HarrisX
## 1077 2020-06-09 2020-06-10                                        YouGov
## 1078 2020-06-09 2020-06-10                                        YouGov
## 1079 2020-06-09 2020-06-10                                        YouGov
## 1080 2020-06-09 2020-06-10                                        YouGov
## 1081 2020-06-06 2020-06-13                                      Ã\230ptimus
## 1082 2020-06-06 2020-06-13                                      Ã\230ptimus
## 1083 2020-06-06 2020-06-13                                      Ã\230ptimus
## 1084 2020-06-06 2020-06-13                                      Ã\230ptimus
## 1085 2020-06-12 2020-06-14                               Change Research
## 1086 2020-06-12 2020-06-14                               Morning Consult
## 1087 2020-06-12 2020-06-14                               Morning Consult
## 1088 2020-06-12 2020-06-14                               Morning Consult
## 1089 2020-06-12 2020-06-14                               Morning Consult
## 1090 2020-06-12 2020-06-14                               Morning Consult
## 1091 2020-06-12 2020-06-14                               Morning Consult
## 1092 2020-06-12 2020-06-14                               Morning Consult
## 1093 2020-06-12 2020-06-14                               Morning Consult
## 1094 2020-06-12 2020-06-14                                        YouGov
## 1095 2020-06-12 2020-06-14                                        YouGov
## 1096 2020-06-12 2020-06-14                                        YouGov
## 1097 2020-06-12 2020-06-14                                        YouGov
## 1098 2020-06-11 2020-06-15                                       AP-NORC
## 1099 2020-06-11 2020-06-15 Global Strategy Group/GBAO/Navigator Research
## 1100 2020-06-11 2020-06-15 Global Strategy Group/GBAO/Navigator Research
## 1101 2020-06-11 2020-06-15 Global Strategy Group/GBAO/Navigator Research
## 1102 2020-06-11 2020-06-15 Global Strategy Group/GBAO/Navigator Research
## 1103 2020-06-11 2020-06-15                                    Quinnipiac
## 1104 2020-06-11 2020-06-15                                    Quinnipiac
## 1105 2020-06-11 2020-06-15                                    Quinnipiac
## 1106 2020-06-11 2020-06-15                                    Quinnipiac
## 1107 2020-06-13 2020-06-15                                       Winston
## 1108 2020-06-09 2020-06-16                                      Ã\230ptimus
## 1109 2020-06-09 2020-06-16                                      Ã\230ptimus
## 1110 2020-06-09 2020-06-16                                      Ã\230ptimus
## 1111 2020-06-09 2020-06-16                                      Ã\230ptimus
## 1112 2020-06-10 2020-06-16                                         Ipsos
## 1113 2020-06-12 2020-06-16                              Echelon Insights
## 1114 2020-06-13 2020-06-16                                      Fox News
## 1115 2020-06-13 2020-06-16                                      Fox News
## 1116 2020-06-13 2020-06-16                                      Fox News
## 1117 2020-06-13 2020-06-16                                      Fox News
## 1118 2020-06-14 2020-06-16                                        YouGov
## 1119 2020-06-14 2020-06-16                                        YouGov
## 1120 2020-06-14 2020-06-16                                        YouGov
## 1121 2020-06-14 2020-06-16                                        YouGov
## 1122 2020-06-11 2020-06-17                                   Nationscape
## 1123 2020-06-11 2020-06-17                                   Nationscape
## 1124 2020-06-11 2020-06-17                                   Nationscape
## 1125 2020-06-11 2020-06-17                                   Nationscape
## 1126 2020-06-17 2020-06-18                                   Harris Poll
## 1127 2020-06-17 2020-06-18                                   Harris Poll
## 1128 2020-06-17 2020-06-18                                   Harris Poll
## 1129 2020-06-17 2020-06-18                                   Harris Poll
## 1130 2020-06-17 2020-06-18                                         Ipsos
## 1131 2020-06-17 2020-06-18                                         Ipsos
## 1132 2020-06-17 2020-06-18                                         Ipsos
## 1133 2020-06-17 2020-06-18                                         Ipsos
## 1134 2020-06-17 2020-06-20                       American Research Group
## 1135 2020-06-17 2020-06-20                       American Research Group
## 1136 2020-06-17 2020-06-20                       American Research Group
## 1137 2020-06-17 2020-06-20                       American Research Group
## 1138 2020-06-18 2020-06-21                               Morning Consult
## 1139 2020-06-18 2020-06-21                               Morning Consult
## 1140 2020-06-18 2020-06-21                               Morning Consult
## 1141 2020-06-18 2020-06-21                               Morning Consult
## 1142 2020-06-19 2020-06-21                               Morning Consult
## 1143 2020-06-19 2020-06-21                               Morning Consult
## 1144 2020-06-19 2020-06-21                               Morning Consult
## 1145 2020-06-19 2020-06-21                               Morning Consult
## 1146 2020-06-17 2020-06-22                      Siena College/NYT Upshot
## 1147 2020-06-17 2020-06-22                      Siena College/NYT Upshot
## 1148 2020-06-17 2020-06-22                      Siena College/NYT Upshot
## 1149 2020-06-17 2020-06-22                      Siena College/NYT Upshot
## 1150 2020-06-18 2020-06-22 Global Strategy Group/GBAO/Navigator Research
## 1151 2020-06-18 2020-06-22 Global Strategy Group/GBAO/Navigator Research
## 1152 2020-06-18 2020-06-22 Global Strategy Group/GBAO/Navigator Research
## 1153 2020-06-18 2020-06-22 Global Strategy Group/GBAO/Navigator Research
## 1154 2020-06-19 2020-06-22                                        YouGov
## 1155 2020-06-19 2020-06-22                                        YouGov
## 1156 2020-06-19 2020-06-22                                        YouGov
## 1157 2020-06-19 2020-06-22                                        YouGov
## 1158 2020-06-21 2020-06-23                                        YouGov
## 1159 2020-06-21 2020-06-23                                        YouGov
## 1160 2020-06-21 2020-06-23                                        YouGov
## 1161 2020-06-21 2020-06-23                                        YouGov
## 1162 2020-06-22 2020-06-23                                       HarrisX
## 1163 2020-06-22 2020-06-23                                       HarrisX
## 1164 2020-06-22 2020-06-23                                       HarrisX
## 1165 2020-06-22 2020-06-23                                       HarrisX
## 1166 2020-06-22 2020-06-23                                         Ipsos
## 1167 2020-06-23 2020-06-23                             Data for Progress
## 1168 2020-06-23 2020-06-23                             Data for Progress
## 1169 2020-06-23 2020-06-23                             Data for Progress
## 1170 2020-06-18 2020-06-24                                   Nationscape
## 1171 2020-06-18 2020-06-24                                   Nationscape
## 1172 2020-06-18 2020-06-24                                   Nationscape
## 1173 2020-06-18 2020-06-24                                   Nationscape
## 1174 2020-06-24 2020-06-25                                        YouGov
## 1175 2020-06-24 2020-06-25                                        YouGov
## 1176 2020-06-24 2020-06-25                                        YouGov
## 1177 2020-06-24 2020-06-25                                        YouGov
## 1178 2020-06-23 2020-06-26                                        YouGov
## 1179 2020-06-23 2020-06-26                                        YouGov
## 1180 2020-06-23 2020-06-26                                        YouGov
## 1181 2020-06-23 2020-06-26                                        YouGov
## 1182 2020-06-23 2020-06-27                                      Ã\230ptimus
## 1183 2020-06-23 2020-06-27                                      Ã\230ptimus
## 1184 2020-06-23 2020-06-27                                      Ã\230ptimus
## 1185 2020-06-23 2020-06-27                                      Ã\230ptimus
## 1186 2020-06-22 2020-06-28                      Hart Research Associates
## 1187 2020-06-26 2020-06-28                               Change Research
## 1188 2020-06-25 2020-06-29                               Morning Consult
## 1189 2020-06-25 2020-06-29                               Morning Consult
## 1190 2020-06-25 2020-06-29                               Morning Consult
## 1191 2020-06-25 2020-06-29                               Morning Consult
## 1192 2020-06-26 2020-06-29                               Morning Consult
## 1193 2020-06-26 2020-06-29                               Morning Consult
## 1194 2020-06-26 2020-06-29                               Morning Consult
## 1195 2020-06-26 2020-06-29                               Morning Consult
## 1196 2020-06-26 2020-06-29                                        YouGov
## 1197 2020-06-26 2020-06-29                                        YouGov
## 1198 2020-06-26 2020-06-29                                        YouGov
## 1199 2020-06-26 2020-06-29                                        YouGov
## 1200 2020-06-08 2020-06-30                                  SurveyMonkey
## 1201 2020-06-08 2020-06-30                                  SurveyMonkey
## 1202 2020-06-08 2020-06-30                                  SurveyMonkey
## 1203 2020-06-08 2020-06-30                                  SurveyMonkey
## 1204 2020-06-25 2020-06-30 Global Strategy Group/GBAO/Navigator Research
## 1205 2020-06-25 2020-06-30 Global Strategy Group/GBAO/Navigator Research
## 1206 2020-06-25 2020-06-30 Global Strategy Group/GBAO/Navigator Research
## 1207 2020-06-25 2020-06-30 Global Strategy Group/GBAO/Navigator Research
## 1208 2020-06-26 2020-06-30                                   Monmouth U.
## 1209 2020-06-26 2020-06-30                                   Monmouth U.
## 1210 2020-06-26 2020-06-30                                   Monmouth U.
## 1211 2020-06-26 2020-06-30                                   Monmouth U.
## 1212 2020-06-27 2020-06-30                                      IBD/TIPP
## 1213 2020-06-28 2020-06-30                                        YouGov
## 1214 2020-06-28 2020-06-30                                        YouGov
## 1215 2020-06-28 2020-06-30                                        YouGov
## 1216 2020-06-28 2020-06-30                                        YouGov
## 1217 2020-06-29 2020-06-30                                         Ipsos
## 1218 2020-06-25 2020-07-01                                   Nationscape
## 1219 2020-06-25 2020-07-01                                   Nationscape
## 1220 2020-06-25 2020-07-01                                   Nationscape
## 1221 2020-06-25 2020-07-01                                   Nationscape
## 1222 2020-07-01 2020-07-04                               Morning Consult
## 1223 2020-07-01 2020-07-04                               Morning Consult
## 1224 2020-07-01 2020-07-04                               Morning Consult
## 1225 2020-07-01 2020-07-04                               Morning Consult
## 1226 2020-06-29 2020-07-05                                  SurveyMonkey
## 1227 2020-06-29 2020-07-05                                  SurveyMonkey
## 1228 2020-06-29 2020-07-05                                  SurveyMonkey
## 1229 2020-06-29 2020-07-05                                  SurveyMonkey
## 1230 2020-06-30 2020-07-05                      Hart Research Associates
## 1231 2020-07-03 2020-07-06                                        YouGov
## 1232 2020-07-03 2020-07-06                                        YouGov
## 1233 2020-07-03 2020-07-06                                        YouGov
## 1234 2020-07-03 2020-07-06                                        YouGov
## 1235 2020-07-05 2020-07-07                                        YouGov
## 1236 2020-07-05 2020-07-07                                        YouGov
## 1237 2020-07-05 2020-07-07                                        YouGov
## 1238 2020-07-05 2020-07-07                                        YouGov
## 1239 2020-07-06 2020-07-07                                         Ipsos
## 1240 2020-07-07 2020-07-07                             Data for Progress
## 1241 2020-07-07 2020-07-07                             Data for Progress
## 1242 2020-07-07 2020-07-07                             Data for Progress
## 1243 2020-07-02 2020-07-08                                   Nationscape
## 1244 2020-07-02 2020-07-08                                   Nationscape
## 1245 2020-07-02 2020-07-08                                   Nationscape
## 1246 2020-07-02 2020-07-08                                   Nationscape
## 1247 2020-07-08 2020-07-09                                         Ipsos
## 1248 2020-07-08 2020-07-09                                         Ipsos
## 1249 2020-07-08 2020-07-09                                         Ipsos
## 1250 2020-07-08 2020-07-09                                         Ipsos
## 1251 2020-07-07 2020-07-10                                       HarrisX
## 1252 2020-07-07 2020-07-10                                       HarrisX
## 1253 2020-07-07 2020-07-10                                       HarrisX
## 1254 2020-07-07 2020-07-10                                       HarrisX
## 1255 2020-07-06 2020-07-12                                  SurveyMonkey
## 1256 2020-07-06 2020-07-12                                  SurveyMonkey
## 1257 2020-07-06 2020-07-12                                  SurveyMonkey
## 1258 2020-07-06 2020-07-12                                  SurveyMonkey
## 1259 2020-07-06 2020-07-12                                  SurveyMonkey
## 1260 2020-07-06 2020-07-12                                  SurveyMonkey
## 1261 2020-07-06 2020-07-12                                  SurveyMonkey
## 1262 2020-07-06 2020-07-12                                  SurveyMonkey
## 1263 2020-07-09 2020-07-12                               Morning Consult
## 1264 2020-07-09 2020-07-12                               Morning Consult
## 1265 2020-07-09 2020-07-12                               Morning Consult
## 1266 2020-07-09 2020-07-12                               Morning Consult
## 1267 2020-07-09 2020-07-12                       NBC/Wall Street Journal
## 1268 2020-07-10 2020-07-12                               Change Research
## 1269 2020-07-10 2020-07-12                               Morning Consult
## 1270 2020-07-10 2020-07-12                               Morning Consult
## 1271 2020-07-10 2020-07-12                               Morning Consult
## 1272 2020-07-10 2020-07-12                               Morning Consult
## 1273 2020-07-10 2020-07-12                                        YouGov
## 1274 2020-07-10 2020-07-12                                        YouGov
## 1275 2020-07-10 2020-07-12                                        YouGov
## 1276 2020-07-10 2020-07-12                                        YouGov
## 1277 2020-07-09 2020-07-13 Global Strategy Group/GBAO/Navigator Research
## 1278 2020-07-09 2020-07-13 Global Strategy Group/GBAO/Navigator Research
## 1279 2020-07-09 2020-07-13 Global Strategy Group/GBAO/Navigator Research
## 1280 2020-07-09 2020-07-13 Global Strategy Group/GBAO/Navigator Research
## 1281 2020-07-09 2020-07-13                                    Quinnipiac
## 1282 2020-07-09 2020-07-13                                    Quinnipiac
## 1283 2020-07-09 2020-07-13                                    Quinnipiac
## 1284 2020-07-09 2020-07-13                                    Quinnipiac
## 1285 2020-07-11 2020-07-14                                        YouGov
## 1286 2020-07-11 2020-07-14                                        YouGov
## 1287 2020-07-11 2020-07-14                                        YouGov
## 1288 2020-07-11 2020-07-14                                        YouGov
## 1289 2020-07-12 2020-07-14                                        YouGov
## 1290 2020-07-12 2020-07-14                                        YouGov
## 1291 2020-07-12 2020-07-14                                        YouGov
## 1292 2020-07-12 2020-07-14                                        YouGov
## 1293 2020-07-13 2020-07-14                                         Ipsos
## 1294 2020-07-09 2020-07-15                                   Nationscape
## 1295 2020-07-09 2020-07-15                                   Nationscape
## 1296 2020-07-09 2020-07-15                                   Nationscape
## 1297 2020-07-09 2020-07-15                                   Nationscape
## 1298 2020-07-12 2020-07-15                                           ABC
## 1299 2020-07-12 2020-07-15                                           ABC
## 1300 2020-07-12 2020-07-15                                           ABC
## 1301 2020-07-12 2020-07-15                                           ABC
## 1302 2020-07-12 2020-07-15                                      Fox News
## 1303 2020-07-12 2020-07-15                                      Fox News
## 1304 2020-07-12 2020-07-15                                      Fox News
## 1305 2020-07-12 2020-07-15                                      Fox News
## 1306 2020-07-16 2020-07-18                                       Winston
## 1307 2020-07-13 2020-07-19                                  SurveyMonkey
## 1308 2020-07-13 2020-07-19                                  SurveyMonkey
## 1309 2020-07-13 2020-07-19                                  SurveyMonkey
## 1310 2020-07-13 2020-07-19                                  SurveyMonkey
## 1311 2020-07-14 2020-07-19                      Kaiser Family Foundation
## 1312 2020-07-14 2020-07-19                      Kaiser Family Foundation
## 1313 2020-07-14 2020-07-19                      Kaiser Family Foundation
## 1314 2020-07-14 2020-07-19                      Kaiser Family Foundation
## 1315 2020-07-17 2020-07-19                               Morning Consult
## 1316 2020-07-17 2020-07-19                               Morning Consult
## 1317 2020-07-17 2020-07-19                               Morning Consult
## 1318 2020-07-17 2020-07-19                               Morning Consult
## 1319 2020-07-17 2020-07-19                               Morning Consult
## 1320 2020-07-17 2020-07-19                               Morning Consult
## 1321 2020-07-17 2020-07-19                               Morning Consult
## 1322 2020-07-17 2020-07-19                               Morning Consult
## 1323 2020-07-17 2020-07-19                                        YouGov
## 1324 2020-07-17 2020-07-19                                        YouGov
## 1325 2020-07-17 2020-07-19                                        YouGov
## 1326 2020-07-17 2020-07-19                                        YouGov
## 1327 2020-07-16 2020-07-20                                       AP-NORC
## 1328 2020-07-16 2020-07-20                                       AP-NORC
## 1329 2020-07-16 2020-07-20                                       AP-NORC
## 1330 2020-07-16 2020-07-20                                       AP-NORC
## 1331 2020-07-16 2020-07-20 Global Strategy Group/GBAO/Navigator Research
## 1332 2020-07-16 2020-07-20 Global Strategy Group/GBAO/Navigator Research
## 1333 2020-07-16 2020-07-20 Global Strategy Group/GBAO/Navigator Research
## 1334 2020-07-16 2020-07-20 Global Strategy Group/GBAO/Navigator Research
## 1335 2020-07-17 2020-07-20                       American Research Group
## 1336 2020-07-17 2020-07-20                       American Research Group
## 1337 2020-07-17 2020-07-20                       American Research Group
## 1338 2020-07-17 2020-07-20                       American Research Group
## 1339 2020-07-15 2020-07-21                                         Ipsos
## 1340 2020-07-19 2020-07-21                                        YouGov
## 1341 2020-07-19 2020-07-21                                        YouGov
## 1342 2020-07-19 2020-07-21                                        YouGov
## 1343 2020-07-19 2020-07-21                                        YouGov
## 1344 2020-07-21 2020-07-21                             Data for Progress
## 1345 2020-07-21 2020-07-21                             Data for Progress
## 1346 2020-07-21 2020-07-21                             Data for Progress
## 1347 2020-07-16 2020-07-22                                   Nationscape
## 1348 2020-07-16 2020-07-22                                   Nationscape
## 1349 2020-07-16 2020-07-22                                   Nationscape
## 1350 2020-07-16 2020-07-22                                   Nationscape
## 1351 2020-07-17 2020-07-22                              Echelon Insights
## 1352 2020-07-21 2020-07-23                                   Harris Poll
## 1353 2020-07-21 2020-07-23                                   Harris Poll
## 1354 2020-07-21 2020-07-23                                   Harris Poll
## 1355 2020-07-21 2020-07-23                                   Harris Poll
## 1356 2020-07-21 2020-07-24                                        YouGov
## 1357 2020-07-21 2020-07-24                                        YouGov
## 1358 2020-07-21 2020-07-24                                        YouGov
## 1359 2020-07-21 2020-07-24                                        YouGov
## 1360 2020-07-20 2020-07-26                                  SurveyMonkey
## 1361 2020-07-20 2020-07-26                                  SurveyMonkey
## 1362 2020-07-20 2020-07-26                                  SurveyMonkey
## 1363 2020-07-20 2020-07-26                                  SurveyMonkey
## 1364 2020-07-23 2020-07-26                               Morning Consult
## 1365 2020-07-23 2020-07-26                               Morning Consult
## 1366 2020-07-23 2020-07-26                               Morning Consult
## 1367 2020-07-23 2020-07-26                               Morning Consult
## 1368 2020-07-24 2020-07-26                               Change Research
## 1369 2020-07-24 2020-07-26                                       HarrisX
## 1370 2020-07-24 2020-07-26                                       HarrisX
## 1371 2020-07-24 2020-07-26                                       HarrisX
## 1372 2020-07-24 2020-07-26                                       HarrisX
## 1373 2020-07-24 2020-07-26                               Morning Consult
## 1374 2020-07-24 2020-07-26                               Morning Consult
## 1375 2020-07-24 2020-07-26                               Morning Consult
## 1376 2020-07-24 2020-07-26                               Morning Consult
## 1377 2020-07-24 2020-07-27                                        YouGov
## 1378 2020-07-24 2020-07-27                                        YouGov
## 1379 2020-07-24 2020-07-27                                        YouGov
## 1380 2020-07-24 2020-07-27                                        YouGov
## 1381 2020-07-24 2020-07-28                                      Ã\230ptimus
## 1382 2020-07-24 2020-07-28                                      Ã\230ptimus
## 1383 2020-07-24 2020-07-28                                      Ã\230ptimus
## 1384 2020-07-24 2020-07-28                                      Ã\230ptimus
## 1385 2020-07-25 2020-07-28                                      IBD/TIPP
## 1386 2020-07-26 2020-07-28                                        YouGov
## 1387 2020-07-26 2020-07-28                                        YouGov
## 1388 2020-07-26 2020-07-28                                        YouGov
## 1389 2020-07-26 2020-07-28                                        YouGov
## 1390 2020-07-27 2020-07-28                                         Ipsos
## 1391 2020-07-27 2020-07-28                                         Ipsos
## 1392 2020-07-27 2020-07-28                                         Ipsos
## 1393 2020-07-27 2020-07-28                                         Ipsos
## 1394 2020-07-28 2020-07-28                             Data for Progress
## 1395 2020-07-28 2020-07-28                             Data for Progress
## 1396 2020-07-28 2020-07-28                             Data for Progress
## 1397 2020-07-23 2020-07-29                                   Nationscape
## 1398 2020-07-23 2020-07-29                                   Nationscape
## 1399 2020-07-23 2020-07-29                                   Nationscape
## 1400 2020-07-23 2020-07-29                                   Nationscape
## 1401 2020-07-28 2020-07-30                                        YouGov
## 1402 2020-07-28 2020-07-30                                        YouGov
## 1403 2020-07-28 2020-07-30                                        YouGov
## 1404 2020-07-28 2020-07-30                                        YouGov
## 1405 2020-07-29 2020-07-30                                         Ipsos
## 1406 2020-07-29 2020-07-30                                         Ipsos
## 1407 2020-07-29 2020-07-30                                         Ipsos
## 1408 2020-07-29 2020-07-30                                         Ipsos
## 1409 2020-07-01 2020-07-31                                  SurveyMonkey
## 1410 2020-07-01 2020-07-31                                  SurveyMonkey
## 1411 2020-07-01 2020-07-31                                  SurveyMonkey
## 1412 2020-07-01 2020-07-31                                  SurveyMonkey
## 1413 2020-07-27 2020-08-02                                           Pew
## 1414 2020-07-27 2020-08-02                                           Pew
## 1415 2020-07-27 2020-08-02                                           Pew
## 1416 2020-07-27 2020-08-02                                  SurveyMonkey
## 1417 2020-07-27 2020-08-02                                  SurveyMonkey
## 1418 2020-07-27 2020-08-02                                  SurveyMonkey
## 1419 2020-07-27 2020-08-02                                  SurveyMonkey
## 1420 2020-07-28 2020-08-02                      Hart Research Associates
## 1421 2020-07-28 2020-08-02                      Hart Research Associates
## 1422 2020-07-28 2020-08-02                      Hart Research Associates
## 1423 2020-07-28 2020-08-02                      Hart Research Associates
## 1424 2020-07-31 2020-08-02                               Morning Consult
## 1425 2020-07-31 2020-08-02                               Morning Consult
## 1426 2020-07-31 2020-08-02                               Morning Consult
## 1427 2020-07-31 2020-08-02                               Morning Consult
## 1428 2020-07-31 2020-08-02                               Morning Consult
## 1429 2020-07-31 2020-08-02                               Morning Consult
## 1430 2020-07-31 2020-08-02                               Morning Consult
## 1431 2020-07-31 2020-08-02                               Morning Consult
## 1432 2020-07-30 2020-08-03 Global Strategy Group/GBAO/Navigator Research
## 1433 2020-07-30 2020-08-03 Global Strategy Group/GBAO/Navigator Research
## 1434 2020-07-30 2020-08-03 Global Strategy Group/GBAO/Navigator Research
## 1435 2020-07-30 2020-08-03 Global Strategy Group/GBAO/Navigator Research
## 1436 2020-07-31 2020-08-03                                        YouGov
## 1437 2020-07-31 2020-08-03                                        YouGov
## 1438 2020-07-31 2020-08-03                                        YouGov
## 1439 2020-07-31 2020-08-03                                        YouGov
## 1440 2020-08-02 2020-08-04                                        YouGov
## 1441 2020-08-02 2020-08-04                                        YouGov
## 1442 2020-08-02 2020-08-04                                        YouGov
## 1443 2020-08-02 2020-08-04                                        YouGov
## 1444 2020-08-03 2020-08-04                                         Ipsos
## 1445 2020-07-30 2020-08-05                                   Nationscape
## 1446 2020-07-30 2020-08-05                                   Nationscape
## 1447 2020-07-30 2020-08-05                                   Nationscape
## 1448 2020-07-30 2020-08-05                                   Nationscape
## 1449 2020-08-01 2020-08-06            Georgetown University/Battleground
## 1450 2020-08-01 2020-08-06            Georgetown University/Battleground
## 1451 2020-08-01 2020-08-06            Georgetown University/Battleground
## 1452 2020-08-01 2020-08-06            Georgetown University/Battleground
## 1453 2020-08-03 2020-08-09                                  SurveyMonkey
## 1454 2020-08-03 2020-08-09                                  SurveyMonkey
## 1455 2020-08-03 2020-08-09                                  SurveyMonkey
## 1456 2020-08-03 2020-08-09                                  SurveyMonkey
## 1457 2020-08-03 2020-08-09                                  SurveyMonkey
## 1458 2020-08-03 2020-08-09                                  SurveyMonkey
## 1459 2020-08-03 2020-08-09                                  SurveyMonkey
## 1460 2020-08-03 2020-08-09                                  SurveyMonkey
## 1461 2020-08-07 2020-08-09                               Change Research
## 1462 2020-08-05 2020-08-10                               Morning Consult
## 1463 2020-08-05 2020-08-10                               Morning Consult
## 1464 2020-08-05 2020-08-10                               Morning Consult
## 1465 2020-08-05 2020-08-10                               Morning Consult
## 1466 2020-08-06 2020-08-10 Global Strategy Group/GBAO/Navigator Research
## 1467 2020-08-06 2020-08-10 Global Strategy Group/GBAO/Navigator Research
## 1468 2020-08-06 2020-08-10 Global Strategy Group/GBAO/Navigator Research
## 1469 2020-08-06 2020-08-10 Global Strategy Group/GBAO/Navigator Research
## 1470 2020-08-06 2020-08-10                                   Monmouth U.
## 1471 2020-08-06 2020-08-10                                   Monmouth U.
## 1472 2020-08-06 2020-08-10                                   Monmouth U.
## 1473 2020-08-06 2020-08-10                                   Monmouth U.
## 1474 2020-08-07 2020-08-10                                        YouGov
## 1475 2020-08-07 2020-08-10                                        YouGov
## 1476 2020-08-07 2020-08-10                                        YouGov
## 1477 2020-08-07 2020-08-10                                        YouGov
## 1478 2020-08-09 2020-08-10                               Morning Consult
## 1479 2020-08-09 2020-08-10                               Morning Consult
## 1480 2020-08-09 2020-08-10                               Morning Consult
## 1481 2020-08-09 2020-08-10                               Morning Consult
## 1482 2020-08-08 2020-08-11                                       HarrisX
## 1483 2020-08-08 2020-08-11                                       HarrisX
## 1484 2020-08-08 2020-08-11                                       HarrisX
## 1485 2020-08-08 2020-08-11                                       HarrisX
## 1486 2020-08-09 2020-08-11                                        YouGov
## 1487 2020-08-09 2020-08-11                                        YouGov
## 1488 2020-08-09 2020-08-11                                        YouGov
## 1489 2020-08-09 2020-08-11                                        YouGov
## 1490 2020-08-10 2020-08-11                                         Ipsos
## 1491 2020-08-11 2020-08-11                             Data for Progress
## 1492 2020-08-11 2020-08-11                             Data for Progress
## 1493 2020-08-11 2020-08-11                             Data for Progress
## 1494 2020-07-30 2020-08-12                                        Gallup
## 1495 2020-07-30 2020-08-12                                        Gallup
## 1496 2020-07-30 2020-08-12                                        Gallup
## 1497 2020-07-30 2020-08-12                                        Gallup
## 1498 2020-08-06 2020-08-12                                   Nationscape
## 1499 2020-08-06 2020-08-12                                   Nationscape
## 1500 2020-08-06 2020-08-12                                   Nationscape
## 1501 2020-08-06 2020-08-12                                   Nationscape
## 1502 2020-08-09 2020-08-12                                      Fox News
## 1503 2020-08-09 2020-08-12                                      Fox News
## 1504 2020-08-09 2020-08-12                                      Fox News
## 1505 2020-08-09 2020-08-12                                      Fox News
## 1506 2020-08-09 2020-08-12                       NBC/Wall Street Journal
## 1507 2020-08-12 2020-08-15                                           ABC
## 1508 2020-08-12 2020-08-15                                           ABC
## 1509 2020-08-12 2020-08-15                                           ABC
## 1510 2020-08-12 2020-08-15                                           ABC
## 1511 2020-08-12 2020-08-15                                          SSRS
## 1512 2020-08-12 2020-08-15                                          SSRS
## 1513 2020-08-12 2020-08-15                                          SSRS
## 1514 2020-08-12 2020-08-15                                          SSRS
## 1515 2020-08-14 2020-08-15                                        YouGov
## 1516 2020-08-14 2020-08-15                                        YouGov
## 1517 2020-08-14 2020-08-15                                        YouGov
## 1518 2020-08-14 2020-08-15                                        YouGov
## 1519 2020-08-10 2020-08-16                                  SurveyMonkey
## 1520 2020-08-10 2020-08-16                                  SurveyMonkey
## 1521 2020-08-10 2020-08-16                                  SurveyMonkey
## 1522 2020-08-10 2020-08-16                                  SurveyMonkey
## 1523 2020-08-14 2020-08-16                               Morning Consult
## 1524 2020-08-14 2020-08-16                               Morning Consult
## 1525 2020-08-14 2020-08-16                               Morning Consult
## 1526 2020-08-14 2020-08-16                               Morning Consult
## 1527 2020-08-14 2020-08-17                               Morning Consult
## 1528 2020-08-14 2020-08-17                               Morning Consult
## 1529 2020-08-14 2020-08-17                               Morning Consult
## 1530 2020-08-14 2020-08-17                               Morning Consult
## 1531 2020-08-14 2020-08-17                                        YouGov
## 1532 2020-08-14 2020-08-17                                        YouGov
## 1533 2020-08-14 2020-08-17                                        YouGov
## 1534 2020-08-14 2020-08-17                                        YouGov
## 1535 2020-08-14 2020-08-18                              Echelon Insights
## 1536 2020-08-14 2020-08-18                                         Ipsos
## 1537 2020-08-16 2020-08-18                                        YouGov
## 1538 2020-08-16 2020-08-18                                        YouGov
## 1539 2020-08-16 2020-08-18                                        YouGov
## 1540 2020-08-16 2020-08-18                                        YouGov
## 1541 2020-08-13 2020-08-19                                   Nationscape
## 1542 2020-08-13 2020-08-19                                   Nationscape
## 1543 2020-08-13 2020-08-19                                   Nationscape
## 1544 2020-08-13 2020-08-19                                   Nationscape
## 1545 2020-08-17 2020-08-19                                       AP-NORC
## 1546 2020-08-17 2020-08-19                                       AP-NORC
## 1547 2020-08-17 2020-08-19                                       AP-NORC
## 1548 2020-08-17 2020-08-19                                       AP-NORC
## 1549 2020-08-17 2020-08-20                       American Research Group
## 1550 2020-08-17 2020-08-20                       American Research Group
## 1551 2020-08-17 2020-08-20                       American Research Group
## 1552 2020-08-17 2020-08-20                       American Research Group
## 1553 2020-08-19 2020-08-21                                        YouGov
## 1554 2020-08-19 2020-08-21                                        YouGov
## 1555 2020-08-19 2020-08-21                                        YouGov
## 1556 2020-08-19 2020-08-21                                        YouGov
## 1557 2020-08-20 2020-08-22                                        YouGov
## 1558 2020-08-20 2020-08-22                                        YouGov
## 1559 2020-08-20 2020-08-22                                        YouGov
## 1560 2020-08-20 2020-08-22                                        YouGov
## 1561 2020-08-17 2020-08-23                                  SurveyMonkey
## 1562 2020-08-17 2020-08-23                                  SurveyMonkey
## 1563 2020-08-17 2020-08-23                                  SurveyMonkey
## 1564 2020-08-17 2020-08-23                                  SurveyMonkey
## 1565 2020-08-21 2020-08-23                               Change Research
## 1566 2020-08-21 2020-08-23                               Morning Consult
## 1567 2020-08-21 2020-08-23                               Morning Consult
## 1568 2020-08-21 2020-08-23                               Morning Consult
## 1569 2020-08-21 2020-08-23                               Morning Consult
## 1570 2020-08-21 2020-08-23                               Morning Consult
## 1571 2020-08-21 2020-08-23                               Morning Consult
## 1572 2020-08-21 2020-08-23                               Morning Consult
## 1573 2020-08-21 2020-08-23                               Morning Consult
## 1574 2020-08-21 2020-08-23                                        YouGov
## 1575 2020-08-21 2020-08-23                                        YouGov
## 1576 2020-08-21 2020-08-23                                        YouGov
## 1577 2020-08-21 2020-08-23                                        YouGov
## 1578 2020-08-21 2020-08-24 Global Strategy Group/GBAO/Navigator Research
## 1579 2020-08-21 2020-08-24 Global Strategy Group/GBAO/Navigator Research
## 1580 2020-08-21 2020-08-24 Global Strategy Group/GBAO/Navigator Research
## 1581 2020-08-21 2020-08-24 Global Strategy Group/GBAO/Navigator Research
## 1582 2020-08-19 2020-08-25                                         Ipsos
## 1583 2020-08-23 2020-08-25                                        YouGov
## 1584 2020-08-23 2020-08-25                                        YouGov
## 1585 2020-08-23 2020-08-25                                        YouGov
## 1586 2020-08-23 2020-08-25                                        YouGov
## 1587 2020-08-20 2020-08-26                                   Nationscape
## 1588 2020-08-20 2020-08-26                                   Nationscape
## 1589 2020-08-20 2020-08-26                                   Nationscape
## 1590 2020-08-20 2020-08-26                                   Nationscape
## 1591 2020-08-27 2020-08-28                                        YouGov
## 1592 2020-08-27 2020-08-28                                        YouGov
## 1593 2020-08-27 2020-08-28                                        YouGov
## 1594 2020-08-27 2020-08-28                                        YouGov
## 1595 2020-08-27 2020-08-29                                        YouGov
## 1596 2020-08-27 2020-08-29                                        YouGov
## 1597 2020-08-27 2020-08-29                                        YouGov
## 1598 2020-08-27 2020-08-29                                        YouGov
## 1599 2020-08-28 2020-08-29                                         Ipsos
## 1600 2020-08-28 2020-08-29                                         Ipsos
## 1601 2020-08-28 2020-08-29                                         Ipsos
## 1602 2020-08-28 2020-08-29                                         Ipsos
## 1603 2020-08-24 2020-08-30                                    AtlasIntel
## 1604 2020-08-24 2020-08-30                                  SurveyMonkey
## 1605 2020-08-24 2020-08-30                                  SurveyMonkey
## 1606 2020-08-24 2020-08-30                                  SurveyMonkey
## 1607 2020-08-24 2020-08-30                                  SurveyMonkey
## 1608 2020-08-26 2020-08-30                                        Selzer
## 1609 2020-08-26 2020-08-30                                        Selzer
## 1610 2020-08-26 2020-08-30                                        Selzer
## 1611 2020-08-26 2020-08-30                                        Selzer
## 1612 2020-08-28 2020-08-30                               Morning Consult
## 1613 2020-08-28 2020-08-30                               Morning Consult
## 1614 2020-08-28 2020-08-30                               Morning Consult
## 1615 2020-08-28 2020-08-30                               Morning Consult
## 1616 2020-08-01 2020-08-31                                  SurveyMonkey
## 1617 2020-08-01 2020-08-31                                  SurveyMonkey
## 1618 2020-08-01 2020-08-31                                  SurveyMonkey
## 1619 2020-08-01 2020-08-31                                  SurveyMonkey
## 1620 2020-08-27 2020-08-31 Global Strategy Group/GBAO/Navigator Research
## 1621 2020-08-27 2020-08-31 Global Strategy Group/GBAO/Navigator Research
## 1622 2020-08-27 2020-08-31 Global Strategy Group/GBAO/Navigator Research
## 1623 2020-08-27 2020-08-31 Global Strategy Group/GBAO/Navigator Research
## 1624 2020-08-28 2020-08-31                                    Quinnipiac
## 1625 2020-08-28 2020-08-31                                    Quinnipiac
## 1626 2020-08-28 2020-08-31                                    Quinnipiac
## 1627 2020-08-28 2020-08-31                                    Quinnipiac
## 1628 2020-08-28 2020-08-31                               Morning Consult
## 1629 2020-08-28 2020-08-31                               Morning Consult
## 1630 2020-08-28 2020-08-31                               Morning Consult
## 1631 2020-08-28 2020-08-31                               Morning Consult
## 1632 2020-08-28 2020-09-01                                         Ipsos
## 1633 2020-08-28 2020-09-01                                          SSRS
## 1634 2020-08-28 2020-09-01                                          SSRS
## 1635 2020-08-28 2020-09-01                                          SSRS
## 1636 2020-08-28 2020-09-01                                          SSRS
## 1637 2020-08-29 2020-09-01                                      IBD/TIPP
## 1638 2020-08-30 2020-09-01                                        YouGov
## 1639 2020-08-30 2020-09-01                                        YouGov
## 1640 2020-08-30 2020-09-01                                        YouGov
## 1641 2020-08-30 2020-09-01                                        YouGov
## 1642 2020-09-01 2020-09-01                             Data for Progress
## 1643 2020-09-01 2020-09-01                             Data for Progress
## 1644 2020-09-01 2020-09-01                             Data for Progress
## 1645 2020-08-27 2020-09-02                                   Nationscape
## 1646 2020-08-27 2020-09-02                                   Nationscape
## 1647 2020-08-27 2020-09-02                                   Nationscape
## 1648 2020-08-27 2020-09-02                                   Nationscape
## 1649 2020-08-31 2020-09-02                                   Harris Poll
## 1650 2020-08-31 2020-09-02                                   Harris Poll
## 1651 2020-08-31 2020-09-02                                   Harris Poll
## 1652 2020-08-31 2020-09-02                                   Harris Poll
## 1653 2020-08-28 2020-09-03                      Kaiser Family Foundation
## 1654 2020-08-28 2020-09-03                      Kaiser Family Foundation
## 1655 2020-08-28 2020-09-03                      Kaiser Family Foundation
## 1656 2020-08-28 2020-09-03                      Kaiser Family Foundation
## 1657 2020-08-25 2020-09-06                                          SSRS
## 1658 2020-08-31 2020-09-06                                  SurveyMonkey
## 1659 2020-08-31 2020-09-06                                  SurveyMonkey
## 1660 2020-08-31 2020-09-06                                  SurveyMonkey
## 1661 2020-08-31 2020-09-06                                  SurveyMonkey
## 1662 2020-09-02 2020-09-06                               Morning Consult
## 1663 2020-09-02 2020-09-06                               Morning Consult
## 1664 2020-09-02 2020-09-06                               Morning Consult
## 1665 2020-09-02 2020-09-06                               Morning Consult
## 1666 2020-09-04 2020-09-06                               Change Research
## 1667 2020-09-03 2020-09-07                      Hart Research Associates
## 1668 2020-09-03 2020-09-08                                         Ipsos
## 1669 2020-09-03 2020-09-08                                         Ipsos
## 1670 2020-09-03 2020-09-08                                         Ipsos
## 1671 2020-09-03 2020-09-08                                   Monmouth U.
## 1672 2020-09-03 2020-09-08                                   Monmouth U.
## 1673 2020-09-03 2020-09-08                                   Monmouth U.
## 1674 2020-09-03 2020-09-08                                   Monmouth U.
## 1675 2020-09-06 2020-09-08                                        YouGov
## 1676 2020-09-06 2020-09-08                                        YouGov
## 1677 2020-09-06 2020-09-08                                        YouGov
## 1678 2020-09-06 2020-09-08                                        YouGov
## 1679 2020-09-03 2020-09-09                                   Nationscape
## 1680 2020-09-03 2020-09-09                                   Nationscape
## 1681 2020-09-03 2020-09-09                                   Nationscape
## 1682 2020-09-03 2020-09-09                                   Nationscape
## 1683 2020-09-08 2020-09-09                                 Climate Nexus
## 1684 2020-09-08 2020-09-09                                 Climate Nexus
## 1685 2020-09-08 2020-09-09                                 Climate Nexus
## 1686 2020-09-08 2020-09-09                                 Climate Nexus
## 1687 2020-09-07 2020-09-10                                      Fox News
## 1688 2020-09-07 2020-09-10                                      Fox News
## 1689 2020-09-07 2020-09-10                                      Fox News
## 1690 2020-09-08 2020-09-10                      Socioanalítica Research
## 1691 2020-09-09 2020-09-11                                        YouGov
## 1692 2020-09-09 2020-09-11                                        YouGov
## 1693 2020-09-09 2020-09-11                                        YouGov
## 1694 2020-09-09 2020-09-11                                        YouGov
## 1695 2020-09-11 2020-09-12                                         Ipsos
## 1696 2020-09-11 2020-09-12                                         Ipsos
## 1697 2020-09-11 2020-09-12                                         Ipsos
## 1698 2020-09-11 2020-09-12                                         Ipsos
## 1699 2020-09-07 2020-09-13                                  SurveyMonkey
## 1700 2020-09-07 2020-09-13                                  SurveyMonkey
## 1701 2020-09-07 2020-09-13                                  SurveyMonkey
## 1702 2020-09-07 2020-09-13                                  SurveyMonkey
## 1703 2020-09-10 2020-09-13                               Morning Consult
## 1704 2020-09-10 2020-09-13                               Morning Consult
## 1705 2020-09-10 2020-09-13                               Morning Consult
## 1706 2020-09-10 2020-09-13                               Morning Consult
## 1707 2020-09-10 2020-09-14 Global Strategy Group/GBAO/Navigator Research
## 1708 2020-09-10 2020-09-14 Global Strategy Group/GBAO/Navigator Research
## 1709 2020-09-10 2020-09-14 Global Strategy Group/GBAO/Navigator Research
## 1710 2020-09-10 2020-09-14 Global Strategy Group/GBAO/Navigator Research
## 1711 2020-09-11 2020-09-14                                       AP-NORC
## 1712 2020-09-11 2020-09-14                               Morning Consult
## 1713 2020-09-11 2020-09-14                               Morning Consult
## 1714 2020-09-11 2020-09-14                               Morning Consult
## 1715 2020-09-11 2020-09-14                               Morning Consult
## 1716 2020-09-11 2020-09-14                                        YouGov
## 1717 2020-09-11 2020-09-14                                        YouGov
## 1718 2020-09-11 2020-09-14                                        YouGov
## 1719 2020-09-11 2020-09-14                                        YouGov
## 1720 2020-09-08 2020-09-15                          Marquette Law School
## 1721 2020-09-08 2020-09-15                          Marquette Law School
## 1722 2020-09-08 2020-09-15                          Marquette Law School
## 1723 2020-09-08 2020-09-15                          Marquette Law School
## 1724 2020-09-11 2020-09-15                                         Ipsos
## 1725 2020-09-13 2020-09-15                                        YouGov
## 1726 2020-09-13 2020-09-15                                        YouGov
## 1727 2020-09-13 2020-09-15                                        YouGov
## 1728 2020-09-13 2020-09-15                                        YouGov
## 1729 2020-09-15 2020-09-15                             Data for Progress
## 1730 2020-09-15 2020-09-15                             Data for Progress
## 1731 2020-09-15 2020-09-15                             Data for Progress
## 1732 2020-09-10 2020-09-16                                   Nationscape
## 1733 2020-09-10 2020-09-16                                   Nationscape
## 1734 2020-09-10 2020-09-16                                   Nationscape
## 1735 2020-09-10 2020-09-16                                   Nationscape
## 1736 2020-09-13 2020-09-16                       NBC/Wall Street Journal
## 1737 2020-09-15 2020-09-17                                         Ipsos
## 1738 2020-09-15 2020-09-17                                         Ipsos
## 1739 2020-09-15 2020-09-17                                         Ipsos
## 1740 2020-09-15 2020-09-17                                        YouGov
## 1741 2020-09-15 2020-09-17                                        YouGov
## 1742 2020-09-15 2020-09-17                                        YouGov
## 1743 2020-09-15 2020-09-17                                        YouGov
## 1744 2020-09-14 2020-09-20                                  SurveyMonkey
## 1745 2020-09-14 2020-09-20                                  SurveyMonkey
## 1746 2020-09-14 2020-09-20                                  SurveyMonkey
## 1747 2020-09-14 2020-09-20                                  SurveyMonkey
## 1748 2020-09-17 2020-09-20                       American Research Group
## 1749 2020-09-17 2020-09-20                       American Research Group
## 1750 2020-09-17 2020-09-20                       American Research Group
## 1751 2020-09-17 2020-09-20                       American Research Group
## 1752 2020-09-18 2020-09-20                               Change Research
## 1753 2020-09-18 2020-09-20                               Morning Consult
## 1754 2020-09-18 2020-09-20                               Morning Consult
## 1755 2020-09-18 2020-09-20                               Morning Consult
## 1756 2020-09-18 2020-09-20                               Morning Consult
## 1757 2020-09-18 2020-09-20                               Morning Consult
## 1758 2020-09-18 2020-09-20                               Morning Consult
## 1759 2020-09-18 2020-09-20                               Morning Consult
## 1760 2020-09-18 2020-09-20                               Morning Consult
## 1761 2020-09-17 2020-09-21 Global Strategy Group/GBAO/Navigator Research
## 1762 2020-09-17 2020-09-21 Global Strategy Group/GBAO/Navigator Research
## 1763 2020-09-17 2020-09-21 Global Strategy Group/GBAO/Navigator Research
## 1764 2020-09-17 2020-09-21 Global Strategy Group/GBAO/Navigator Research
## 1765 2020-09-17 2020-09-21                                    Quinnipiac
## 1766 2020-09-17 2020-09-21                                    Quinnipiac
## 1767 2020-09-17 2020-09-21                                    Quinnipiac
## 1768 2020-09-17 2020-09-21                                    Quinnipiac
## 1769 2020-09-18 2020-09-21                                       HarrisX
## 1770 2020-09-18 2020-09-21                                       HarrisX
## 1771 2020-09-18 2020-09-21                                       HarrisX
## 1772 2020-09-18 2020-09-21                                       HarrisX
## 1773 2020-09-14 2020-09-22                            Hofstra University
## 1774 2020-09-14 2020-09-22                            Hofstra University
## 1775 2020-09-14 2020-09-22                            Hofstra University
## 1776 2020-09-14 2020-09-22                            Hofstra University
## 1777 2020-09-18 2020-09-22                                         Ipsos
## 1778 2020-09-20 2020-09-22                                        YouGov
## 1779 2020-09-20 2020-09-22                                        YouGov
## 1780 2020-09-20 2020-09-22                                        YouGov
## 1781 2020-09-20 2020-09-22                                        YouGov
## 1782 2020-09-22 2020-09-22                             Data for Progress
## 1783 2020-09-09 2020-09-22            Public Religion Research Institute
## 1784 2020-09-09 2020-09-22            Public Religion Research Institute
## 1785 2020-09-09 2020-09-22            Public Religion Research Institute
## 1786 2020-09-09 2020-09-22            Public Religion Research Institute
## 1787 2020-09-17 2020-09-23                                   Nationscape
## 1788 2020-09-17 2020-09-23                                   Nationscape
## 1789 2020-09-17 2020-09-23                                   Nationscape
## 1790 2020-09-17 2020-09-23                                   Nationscape
## 1791 2020-09-21 2020-09-23                                        YouGov
## 1792 2020-09-21 2020-09-23                                        YouGov
## 1793 2020-09-21 2020-09-23                                        YouGov
## 1794 2020-09-21 2020-09-23                                        YouGov
## 1795 2020-09-21 2020-09-24                                           ABC
## 1796 2020-09-22 2020-09-24                                         Ipsos
## 1797 2020-09-22 2020-09-24                                         Ipsos
## 1798 2020-09-22 2020-09-24                                         Ipsos
## 1799 2020-09-22 2020-09-24                                         Ipsos
## 1800 2020-09-23 2020-09-24                                   Harris Poll
## 1801 2020-09-23 2020-09-24                                   Harris Poll
## 1802 2020-09-23 2020-09-24                                   Harris Poll
## 1803 2020-09-23 2020-09-24                                   Harris Poll
## 1804 2020-09-19 2020-09-25                              Echelon Insights
## 1805 2020-09-21 2020-09-27                                  SurveyMonkey
## 1806 2020-09-21 2020-09-27                                  SurveyMonkey
## 1807 2020-09-21 2020-09-27                                  SurveyMonkey
## 1808 2020-09-21 2020-09-27                                  SurveyMonkey
## 1809 2020-09-25 2020-09-27                               Morning Consult
## 1810 2020-09-25 2020-09-27                               Morning Consult
## 1811 2020-09-25 2020-09-27                               Morning Consult
## 1812 2020-09-25 2020-09-27                               Morning Consult
## 1813 2020-09-14 2020-09-28                                        Gallup
## 1814 2020-09-14 2020-09-28                                        Gallup
## 1815 2020-09-14 2020-09-28                                        Gallup
## 1816 2020-09-14 2020-09-28                                        Gallup
## 1817 2020-09-26 2020-09-28 Global Strategy Group/GBAO/Navigator Research
## 1818 2020-09-25 2020-09-29                                         Ipsos
## 1819 2020-09-01 2020-09-30                                  SurveyMonkey
## 1820 2020-09-01 2020-09-30                                  SurveyMonkey
## 1821 2020-09-01 2020-09-30                                  SurveyMonkey
## 1822 2020-09-01 2020-09-30                                  SurveyMonkey
## 1823 2020-09-24 2020-09-30                                   Nationscape
## 1824 2020-09-24 2020-09-30                                   Nationscape
## 1825 2020-09-24 2020-09-30                                   Nationscape
## 1826 2020-09-24 2020-09-30                                   Nationscape
## 1827 2020-09-27 2020-09-30                                        YouGov
## 1828 2020-09-27 2020-09-30                                        YouGov
## 1829 2020-09-27 2020-09-30                                        YouGov
## 1830 2020-09-27 2020-09-30                                        YouGov
## 1831 2020-09-26 2020-09-30                                       Winston
## 1832 2020-09-29 2020-10-01                                         Ipsos
## 1833 2020-09-29 2020-10-01                                         Ipsos
## 1834 2020-09-29 2020-10-01                                         Ipsos
## 1835 2020-10-01 2020-10-02                                        YouGov
## 1836 2020-10-01 2020-10-02                                        YouGov
## 1837 2020-10-01 2020-10-02                                        YouGov
## 1838 2020-10-01 2020-10-02                                        YouGov
## 1839 2020-10-01 2020-10-02                                        YouGov
## 1840 2020-10-02 2020-10-02                               Morning Consult
## 1841 2020-10-02 2020-10-02                               Morning Consult
## 1842 2020-10-02 2020-10-02                               Morning Consult
## 1843 2020-10-02 2020-10-02                               Morning Consult
## 1844 2020-10-02 2020-10-02                               Morning Consult
## 1845 2020-10-02 2020-10-02                               Morning Consult
## 1846 2020-10-02 2020-10-02                               Morning Consult
## 1847 2020-10-02 2020-10-02                               Morning Consult
## 1848 2020-10-02 2020-10-03                               Morning Consult
## 1849 2020-10-02 2020-10-03                               Morning Consult
## 1850 2020-10-02 2020-10-03                               Morning Consult
## 1851 2020-10-02 2020-10-03                               Morning Consult
## 1852 2020-10-02 2020-10-03                               Morning Consult
## 1853 2020-10-02 2020-10-03                               Morning Consult
## 1854 2020-10-02 2020-10-03                               Morning Consult
## 1855 2020-10-02 2020-10-03                               Morning Consult
## 1856 2020-10-02 2020-10-03                                        YouGov
## 1857 2020-10-02 2020-10-03                                        YouGov
## 1858 2020-10-02 2020-10-03                                        YouGov
## 1859 2020-10-02 2020-10-03                                        YouGov
## 1860 2020-10-02 2020-10-03                                        YouGov
## 1861 2020-10-02 2020-10-03                                         Ipsos
## 1862 2020-10-02 2020-10-03                                         Ipsos
## 1863 2020-10-02 2020-10-03                                         Ipsos
## 1864 2020-10-02 2020-10-03                                         Ipsos
## 1865 2020-09-28 2020-10-04                                  SurveyMonkey
## 1866 2020-09-28 2020-10-04                                  SurveyMonkey
## 1867 2020-09-28 2020-10-04                                  SurveyMonkey
## 1868 2020-09-28 2020-10-04                                  SurveyMonkey
## 1869 2020-10-01 2020-10-04                               Morning Consult
## 1870 2020-10-01 2020-10-04                               Morning Consult
## 1871 2020-10-01 2020-10-04                               Morning Consult
## 1872 2020-10-01 2020-10-04                               Morning Consult
## 1873 2020-10-01 2020-10-04                                          SSRS
## 1874 2020-10-01 2020-10-04                                          SSRS
## 1875 2020-10-01 2020-10-04                                          SSRS
## 1876 2020-10-01 2020-10-04                                          SSRS
## 1877 2020-10-02 2020-10-04                               Change Research
## 1878 2020-10-02 2020-10-05 Global Strategy Group/GBAO/Navigator Research
## 1879 2020-10-02 2020-10-06                                         Ipsos
## 1880 2020-10-06 2020-10-06                             Data for Progress
## 1881 2020-10-06 2020-10-06                             Data for Progress
## 1882 2020-10-06 2020-10-06                             Data for Progress
## 1883 2020-10-01 2020-10-07                                   Nationscape
## 1884 2020-10-01 2020-10-07                                   Nationscape
## 1885 2020-10-01 2020-10-07                                   Nationscape
## 1886 2020-10-01 2020-10-07                                   Nationscape
## 1887 2020-10-06 2020-10-08                                         Ipsos
## 1888 2020-10-06 2020-10-08                                         Ipsos
## 1889 2020-10-06 2020-10-08                                         Ipsos
## 1890 2020-10-06 2020-10-08                                         Ipsos
## 1891 2020-10-06 2020-10-09                                           ABC
## 1892 2020-10-06 2020-10-09                                           ABC
## 1893 2020-10-06 2020-10-09                                           ABC
## 1894 2020-10-06 2020-10-09                                           ABC
## 1895 2020-10-08 2020-10-10                               Morning Consult
## 1896 2020-10-08 2020-10-10                               Morning Consult
## 1897 2020-10-08 2020-10-10                               Morning Consult
## 1898 2020-10-08 2020-10-10                               Morning Consult
## 1899 2020-10-05 2020-10-11                                  SurveyMonkey
## 1900 2020-10-05 2020-10-11                                  SurveyMonkey
## 1901 2020-10-05 2020-10-11                                  SurveyMonkey
## 1902 2020-10-05 2020-10-11                                  SurveyMonkey
## 1903 2020-10-09 2020-10-11                                        YouGov
## 1904 2020-10-09 2020-10-11                                        YouGov
## 1905 2020-10-09 2020-10-11                                        YouGov
## 1906 2020-10-09 2020-10-11                                        YouGov
## 1907 2020-10-09 2020-10-11                                        YouGov
## 1908 2020-10-08 2020-10-12 Global Strategy Group/GBAO/Navigator Research
## 1909 2020-10-08 2020-10-12 Global Strategy Group/GBAO/Navigator Research
## 1910 2020-10-08 2020-10-12 Global Strategy Group/GBAO/Navigator Research
## 1911 2020-10-08 2020-10-12 Global Strategy Group/GBAO/Navigator Research
## 1912 2020-10-08 2020-10-12                                       AP-NORC
## 1913 2020-10-09 2020-10-12                       NBC/Wall Street Journal
## 1914 2020-10-08 2020-10-13                                        Marist
## 1915 2020-10-08 2020-10-13                                        Marist
## 1916 2020-10-08 2020-10-13                                        Marist
## 1917 2020-10-08 2020-10-13                                        Marist
## 1918 2020-10-08 2020-10-13                                        Marist
## 1919 2020-10-09 2020-10-13                                         Ipsos
## 1920 2020-10-11 2020-10-13                                        YouGov
## 1921 2020-10-11 2020-10-13                                        YouGov
## 1922 2020-10-11 2020-10-13                                        YouGov
## 1923 2020-10-11 2020-10-13                                        YouGov
## 1924 2020-10-10 2020-10-13                                       HarrisX
## 1925 2020-10-10 2020-10-13                                       HarrisX
## 1926 2020-10-10 2020-10-13                                       HarrisX
## 1927 2020-10-10 2020-10-13                                       HarrisX
## 1928 2020-10-08 2020-10-14                                   Nationscape
## 1929 2020-10-08 2020-10-14                                   Nationscape
## 1930 2020-10-08 2020-10-14                                   Nationscape
## 1931 2020-10-08 2020-10-14                                   Nationscape
## 1932 2020-10-13 2020-10-15                                         Ipsos
## 1933 2020-10-13 2020-10-15                                         Ipsos
## 1934 2020-10-13 2020-10-15                                         Ipsos
## 1935 2020-10-13 2020-10-15                                         Ipsos
## 1936 2020-10-16 2020-10-18                               Morning Consult
## 1937 2020-10-16 2020-10-18                               Morning Consult
## 1938 2020-10-16 2020-10-18                               Morning Consult
## 1939 2020-10-16 2020-10-18                               Morning Consult
## 1940 2020-10-12 2020-10-18                                  SurveyMonkey
## 1941 2020-10-12 2020-10-18                                  SurveyMonkey
## 1942 2020-10-12 2020-10-18                                  SurveyMonkey
## 1943 2020-10-12 2020-10-18                                  SurveyMonkey
## 1944 2020-10-16 2020-10-18                                        YouGov
## 1945 2020-10-16 2020-10-18                                        YouGov
## 1946 2020-10-16 2020-10-18                                        YouGov
## 1947 2020-10-16 2020-10-18                                        YouGov
## 1948 2020-10-16 2020-10-18                                        YouGov
## 1949 2020-10-17 2020-10-18                               Change Research
## 1950 2020-10-15 2020-10-19 Global Strategy Group/GBAO/Navigator Research
## 1951 2020-10-15 2020-10-19 Global Strategy Group/GBAO/Navigator Research
## 1952 2020-10-15 2020-10-19 Global Strategy Group/GBAO/Navigator Research
## 1953 2020-10-15 2020-10-19 Global Strategy Group/GBAO/Navigator Research
## 1954 2020-10-16 2020-10-19                                    Quinnipiac
## 1955 2020-10-16 2020-10-19                                    Quinnipiac
## 1956 2020-10-16 2020-10-19                                    Quinnipiac
## 1957 2020-10-16 2020-10-19                                    Quinnipiac
## 1958 2020-10-18 2020-10-20                                        YouGov
## 1959 2020-10-18 2020-10-20                                        YouGov
## 1960 2020-10-18 2020-10-20                                        YouGov
## 1961 2020-10-18 2020-10-20                                        YouGov
## 1962 2020-10-18 2020-10-20                                        YouGov
## 1963 2020-10-17 2020-10-20                       American Research Group
## 1964 2020-10-17 2020-10-20                       American Research Group
## 1965 2020-10-17 2020-10-20                       American Research Group
## 1966 2020-10-17 2020-10-20                       American Research Group
## 1967 2020-10-16 2020-10-20                                         Ipsos
## 1968 2020-10-20 2020-10-20                             Data for Progress
## 1969 2020-10-20 2020-10-20                             Data for Progress
## 1970 2020-10-20 2020-10-20                             Data for Progress
## 1971 2020-10-16 2020-10-20                              Echelon Insights
## 1972 2020-10-15 2020-10-21                                   Nationscape
## 1973 2020-10-15 2020-10-21                                   Nationscape
## 1974 2020-10-15 2020-10-21                                   Nationscape
## 1975 2020-10-15 2020-10-21                                   Nationscape
## 1976 2020-10-20 2020-10-22                                         Ipsos
## 1977 2020-10-20 2020-10-22                                         Ipsos
## 1978 2020-10-20 2020-10-22                                         Ipsos
## 1979 2020-10-20 2020-10-22                                         Ipsos
## 1980 2020-10-23 2020-10-24                                         Ipsos
## 1981 2020-10-23 2020-10-24                               Change Research
## 1982 2020-10-23 2020-10-25                                        YouGov
## 1983 2020-10-23 2020-10-25                                        YouGov
## 1984 2020-10-23 2020-10-25                                        YouGov
## 1985 2020-10-23 2020-10-25                               Morning Consult
## 1986 2020-10-23 2020-10-25                               Morning Consult
## 1987 2020-10-23 2020-10-25                               Morning Consult
## 1988 2020-10-19 2020-10-25                                  SurveyMonkey
## 1989 2020-10-19 2020-10-25                                  SurveyMonkey
## 1990 2020-10-19 2020-10-25                                  SurveyMonkey
## 1991 2020-10-19 2020-10-25                                  SurveyMonkey
## 1992 2020-10-23 2020-10-26                                       Winston
## 1993 2020-10-25 2020-10-27                                        YouGov
## 1994 2020-10-25 2020-10-27                                        YouGov
## 1995 2020-10-25 2020-10-27                                        YouGov
## 1996 2020-10-25 2020-10-27                                        YouGov
## 1997 2020-10-25 2020-10-27                                        YouGov
## 1998 2020-10-23 2020-10-27                                         Ipsos
## 1999 2020-10-23 2020-10-27                                        YouGov
## 2000 2020-10-23 2020-10-27                                        YouGov
## 2001 2020-10-23 2020-10-27                                        YouGov
## 2002 2020-10-23 2020-10-27                                        YouGov
## 2003 2020-10-23 2020-10-27                                       Suffolk
## 2004 2020-10-23 2020-10-27                                       Suffolk
## 2005 2020-10-23 2020-10-27                                       Suffolk
## 2006 2020-10-23 2020-10-27                                       Suffolk
## 2007 2020-10-16 2020-10-27                                        Gallup
## 2008 2020-10-16 2020-10-27                                        Gallup
## 2009 2020-10-16 2020-10-27                                        Gallup
## 2010 2020-10-16 2020-10-27                                        Gallup
## 2011 2020-10-22 2020-10-28                                   Nationscape
## 2012 2020-10-22 2020-10-28                                   Nationscape
## 2013 2020-10-22 2020-10-28                                   Nationscape
## 2014 2020-10-22 2020-10-28                                   Nationscape
## 2015 2020-10-29 2020-10-31                       NBC/Wall Street Journal
## 2016 2020-10-29 2020-10-31                               Morning Consult
## 2017 2020-10-29 2020-10-31                               Morning Consult
## 2018 2020-10-29 2020-10-31                               Morning Consult
## 2019 2020-10-29 2020-10-31                               Morning Consult
## 2020 2020-10-01 2020-10-31                                  SurveyMonkey
## 2021 2020-10-01 2020-10-31                                  SurveyMonkey
## 2022 2020-10-01 2020-10-31                                  SurveyMonkey
## 2023 2020-10-01 2020-10-31                                  SurveyMonkey
## 2024 2020-10-30 2020-11-01                                        YouGov
## 2025 2020-10-30 2020-11-01                                        YouGov
## 2026 2020-10-30 2020-11-01                                        YouGov
## 2027 2020-10-30 2020-11-01                                        YouGov
## 2028 2020-10-30 2020-11-01                                        YouGov
## 2029 2020-10-29 2020-11-01                               Change Research
## 2030 2020-10-26 2020-11-01                                  SurveyMonkey
## 2031 2020-10-26 2020-11-01                                  SurveyMonkey
## 2032 2020-10-26 2020-11-01                                  SurveyMonkey
## 2033 2020-10-26 2020-11-01                                  SurveyMonkey
## 2034 2020-10-29 2020-11-02                                         Ipsos
## 2035 2020-10-31 2020-11-02                                        YouGov
## 2036 2020-10-31 2020-11-02                                        YouGov
## 2037 2020-10-31 2020-11-02                                        YouGov
## 2038 2020-10-31 2020-11-02                                        YouGov
## 2039 2020-10-30 2020-11-03 Global Strategy Group/GBAO/Navigator Research
## 2040 2020-10-29 2020-11-04                                   Nationscape
## 2041 2020-10-29 2020-11-04                                   Nationscape
## 2042 2020-10-29 2020-11-04                                   Nationscape
## 2043 2020-10-29 2020-11-04                                   Nationscape
## 2044 2020-11-06 2020-11-09                               Morning Consult
## 2045 2020-11-06 2020-11-09                               Morning Consult
## 2046 2020-11-06 2020-11-09                               Morning Consult
## 2047 2020-11-06 2020-11-09                               Morning Consult
## 2048 2020-11-08 2020-11-10                                        YouGov
## 2049 2020-11-08 2020-11-10                                        YouGov
## 2050 2020-11-08 2020-11-10                                        YouGov
## 2051 2020-11-08 2020-11-10                                        YouGov
## 2052 2020-11-05 2020-11-11                                   Nationscape
## 2053 2020-11-05 2020-11-11                                   Nationscape
## 2054 2020-11-05 2020-11-11                                   Nationscape
## 2055 2020-11-05 2020-11-11                                   Nationscape
## 2056 2020-11-12 2020-11-14                               Morning Consult
## 2057 2020-11-12 2020-11-14                               Morning Consult
## 2058 2020-11-12 2020-11-14                               Morning Consult
## 2059 2020-11-12 2020-11-14                               Morning Consult
## 2060 2020-11-13 2020-11-16                                        YouGov
## 2061 2020-11-13 2020-11-16                                        YouGov
## 2062 2020-11-13 2020-11-16                                        YouGov
## 2063 2020-11-13 2020-11-16                                        YouGov
## 2064 2020-11-13 2020-11-17                                         Ipsos
## 2065 2020-11-13 2020-11-17                                         Ipsos
## 2066 2020-11-13 2020-11-17                                         Ipsos
## 2067 2020-11-13 2020-11-17                                         Ipsos
## 2068 2020-11-12 2020-11-18                                   Nationscape
## 2069 2020-11-12 2020-11-18                                   Nationscape
## 2070 2020-11-12 2020-11-18                                   Nationscape
## 2071 2020-11-12 2020-11-18                                   Nationscape
## 2072 2020-11-17 2020-11-19                                   Harris Poll
## 2073 2020-11-17 2020-11-19                                   Harris Poll
## 2074 2020-11-17 2020-11-19                                   Harris Poll
## 2075 2020-11-17 2020-11-19                                   Harris Poll
## 2076 2020-11-17 2020-11-20                       American Research Group
## 2077 2020-11-17 2020-11-20                       American Research Group
## 2078 2020-11-17 2020-11-20                       American Research Group
## 2079 2020-11-17 2020-11-20                       American Research Group
## 2080 2020-11-16 2020-11-20                              Echelon Insights
## 2081 2020-11-13 2020-11-21                                         Ipsos
## 2082 2020-11-19 2020-11-23                               Morning Consult
## 2083 2020-11-19 2020-11-23                               Morning Consult
## 2084 2020-11-19 2020-11-23                               Morning Consult
## 2085 2020-11-19 2020-11-23                               Morning Consult
## 2086 2020-11-21 2020-11-24                                        YouGov
## 2087 2020-11-21 2020-11-24                                        YouGov
## 2088 2020-11-21 2020-11-24                                        YouGov
## 2089 2020-11-21 2020-11-24                                        YouGov
## 2090 2020-11-29 2020-11-25                                   Nationscape
## 2091 2020-11-29 2020-11-25                                   Nationscape
## 2092 2020-11-29 2020-11-25                                   Nationscape
## 2093 2020-11-29 2020-11-25                                   Nationscape
## 2094 2020-11-26 2020-11-29                               Morning Consult
## 2095 2020-11-26 2020-11-29                               Morning Consult
## 2096 2020-11-26 2020-11-29                               Morning Consult
## 2097 2020-11-26 2020-11-29                               Morning Consult
## 2098 2020-11-30 2020-12-01                                         Ipsos
## 2099 2020-11-26 2020-12-02                                   Nationscape
## 2100 2020-11-26 2020-12-02                                   Nationscape
## 2101 2020-11-26 2020-12-02                                   Nationscape
## 2102 2020-11-26 2020-12-02                                   Nationscape
## 2103 2020-12-04 2020-12-06                               Morning Consult
## 2104 2020-12-04 2020-12-06                               Morning Consult
## 2105 2020-12-04 2020-12-06                               Morning Consult
## 2106 2020-12-04 2020-12-06                               Morning Consult
## 2107 2020-12-01 2020-12-06                                        Marist
## 2108 2020-12-01 2020-12-06                                        Marist
## 2109 2020-12-01 2020-12-06                                        Marist
## 2110 2020-12-01 2020-12-06                                        Marist
## 2111 2020-12-01 2020-12-06                                        Marist
## 2112 2020-12-01 2020-12-07                                    Quinnipiac
## 2113 2020-12-01 2020-12-07                                    Quinnipiac
## 2114 2020-12-01 2020-12-07                                    Quinnipiac
## 2115 2020-12-01 2020-12-07                                    Quinnipiac
## 2116 2020-12-02 2020-12-08                                         Ipsos
## 2117 2020-12-06 2020-12-08                                        YouGov
## 2118 2020-12-06 2020-12-08                                        YouGov
## 2119 2020-12-06 2020-12-08                                        YouGov
## 2120 2020-12-06 2020-12-08                                        YouGov
## 2121 2020-12-06 2020-12-09                                      Fox News
## 2122 2020-12-06 2020-12-09                                      Fox News
## 2123 2020-12-06 2020-12-09                                      Fox News
## 2124 2020-12-06 2020-12-09                                      Fox News
## 2125 2020-12-03 2020-12-09                                   Nationscape
## 2126 2020-12-03 2020-12-09                                   Nationscape
## 2127 2020-12-03 2020-12-09                                   Nationscape
## 2128 2020-12-03 2020-12-09                                   Nationscape
## 2129 2020-12-09 2020-12-13                                    McLaughlin
## 2130 2020-12-09 2020-12-13                                    McLaughlin
## 2131 2020-12-09 2020-12-13                                    McLaughlin
## 2132 2020-12-09 2020-12-13                                    McLaughlin
## 2133 2020-12-07 2020-12-13                                  SurveyMonkey
## 2134 2020-12-07 2020-12-13                                  SurveyMonkey
## 2135 2020-12-07 2020-12-13                                  SurveyMonkey
## 2136 2020-12-07 2020-12-13                                  SurveyMonkey
## 2137 2020-12-11 2020-12-14                                         Ipsos
## 2138 2020-12-13 2020-12-15                                        YouGov
## 2139 2020-12-13 2020-12-15                                        YouGov
## 2140 2020-12-13 2020-12-15                                        YouGov
## 2141 2020-12-13 2020-12-15                                        YouGov
## 2142 2020-12-15 2020-12-15                             Data for Progress
## 2143 2020-12-15 2020-12-15                             Data for Progress
## 2144 2020-12-15 2020-12-15                             Data for Progress
## 2145 2020-12-13 2020-12-15                                        YouGov
## 2146 2020-12-10 2020-12-16                                   Nationscape
## 2147 2020-12-10 2020-12-16                                   Nationscape
## 2148 2020-12-10 2020-12-16                                   Nationscape
## 2149 2020-12-10 2020-12-16                                   Nationscape
## 2150 2020-12-11 2020-12-17                              Echelon Insights
## 2151 2020-12-17 2020-12-19                               Morning Consult
## 2152 2020-12-17 2020-12-19                               Morning Consult
## 2153 2020-12-17 2020-12-19                               Morning Consult
## 2154 2020-12-17 2020-12-19                               Morning Consult
## 2155 2020-12-17 2020-12-20                       American Research Group
## 2156 2020-12-17 2020-12-20                       American Research Group
## 2157 2020-12-17 2020-12-20                       American Research Group
## 2158 2020-12-17 2020-12-20                       American Research Group
## 2159 2020-12-19 2020-12-22                                        YouGov
## 2160 2020-12-19 2020-12-22                                        YouGov
## 2161 2020-12-19 2020-12-22                                        YouGov
## 2162 2020-12-19 2020-12-22                                        YouGov
## 2163 2020-12-19 2020-12-22                                        YouGov
## 2164 2020-12-18 2020-12-22                                         Ipsos
## 2165 2020-12-17 2020-12-23                                   Nationscape
## 2166 2020-12-17 2020-12-23                                   Nationscape
## 2167 2020-12-17 2020-12-23                                   Nationscape
## 2168 2020-12-17 2020-12-23                                   Nationscape
## 2169 2020-12-24 2020-12-26                               Morning Consult
## 2170 2020-12-24 2020-12-26                               Morning Consult
## 2171 2020-12-24 2020-12-26                               Morning Consult
## 2172 2020-12-24 2020-12-26                               Morning Consult
## 2173 2020-12-24 2020-12-30                                   Nationscape
## 2174 2020-12-24 2020-12-30                                   Nationscape
## 2175 2020-12-24 2020-12-30                                   Nationscape
## 2176 2020-12-24 2020-12-30                                   Nationscape
## 2177 2020-12-31 2021-01-02                               Morning Consult
## 2178 2020-12-31 2021-01-02                               Morning Consult
## 2179 2020-12-31 2021-01-02                               Morning Consult
## 2180 2020-12-31 2021-01-02                               Morning Consult
## 2181 2020-12-30 2021-01-03                                       HarrisX
## 2182 2020-12-30 2021-01-03                                       HarrisX
## 2183 2020-12-30 2021-01-03                                       HarrisX
## 2184 2020-12-30 2021-01-03                                       HarrisX
## 2185 2021-01-03 2021-01-05                                        YouGov
## 2186 2021-01-03 2021-01-05                                        YouGov
## 2187 2021-01-03 2021-01-05                                        YouGov
## 2188 2021-01-03 2021-01-05                                        YouGov
## 2189 2021-01-04 2021-01-05                                         Ipsos
## 2190 2021-01-08 2021-01-10                               Morning Consult
## 2191 2021-01-08 2021-01-10                               Morning Consult
## 2192 2021-01-08 2021-01-10                               Morning Consult
## 2193 2021-01-08 2021-01-10                               Morning Consult
## 2194 2021-01-10 2021-01-12                                        YouGov
## 2195 2021-01-10 2021-01-12                                        YouGov
## 2196 2021-01-10 2021-01-12                                        YouGov
## 2197 2021-01-10 2021-01-12                                        YouGov
## 2198 2021-01-10 2021-01-12                                        YouGov
## 2199 2021-01-13 2021-01-13                             Data for Progress
## 2200 2021-01-13 2021-01-13                             Data for Progress
## 2201 2021-01-13 2021-01-13                             Data for Progress
## 2202 2021-01-11 2021-01-13                                        Marist
## 2203 2021-01-11 2021-01-13                                        Marist
## 2204 2021-01-11 2021-01-13                                        Marist
## 2205 2021-01-11 2021-01-13                                        Marist
## 2206 2021-01-11 2021-01-13                                        Marist
## 2207 2021-01-10 2021-01-13                                           ABC
## 2208 2021-01-10 2021-01-13                                           ABC
## 2209 2021-01-10 2021-01-13                                           ABC
## 2210 2021-01-10 2021-01-13                                           ABC
## 2211 2021-01-09 2021-01-14                                          SSRS
## 2212 2021-01-09 2021-01-14                                          SSRS
## 2213 2021-01-09 2021-01-14                                          SSRS
## 2214 2021-01-09 2021-01-14                                          SSRS
## 2215 2021-01-12 2021-01-18                                   Nationscape
## 2216 2021-01-12 2021-01-18                                   Nationscape
## 2217 2021-01-12 2021-01-18                                   Nationscape
## 2218 2021-01-12 2021-01-18                                   Nationscape
## 2219 2021-01-16 2021-01-19                       American Research Group
## 2220 2021-01-16 2021-01-19                       American Research Group
## 2221 2021-01-16 2021-01-19                       American Research Group
## 2222 2021-01-16 2021-01-19                       American Research Group
## 2223 2021-01-16 2021-01-19                                        YouGov
## 2224 2021-01-16 2021-01-19                                        YouGov
## 2225 2021-01-16 2021-01-19                                        YouGov
## 2226 2021-01-16 2021-01-19                                        YouGov
## 2227 2021-10-19 2021-01-21                                        YouGov
## 2228 2021-10-19 2021-01-21                                        YouGov
## 2229 2021-10-19 2021-01-21                                        YouGov
## 2230 2021-10-19 2021-01-21                                        YouGov
## 2231 2021-01-21 2021-01-22                                       HarrisX
## 2232 2021-01-22 2021-01-23                                         Ipsos
## 2233 2021-01-24 2021-01-26                                        YouGov
## 2234 2021-01-24 2021-01-26                                        YouGov
## 2235 2021-01-24 2021-01-26                                        YouGov
## 2236 2021-01-24 2021-01-26                                        YouGov
## 2237 2021-01-20 2021-01-26                              Echelon Insights
## 2238 2021-01-27 2021-01-29                                      IBD/TIPP
## 2239 2021-01-29 2021-02-01                               Morning Consult
## 2240 2021-01-29 2021-02-01                               Morning Consult
## 2241 2021-01-29 2021-02-01                               Morning Consult
## 2242 2021-01-29 2021-02-01                               Morning Consult
## 2243 2021-01-28 2021-02-01                                    Quinnipiac
## 2244 2021-01-28 2021-02-01                                    Quinnipiac
## 2245 2021-01-28 2021-02-01                                    Quinnipiac
## 2246 2021-01-28 2021-02-01                                    Quinnipiac
## 2247 2021-01-31 2021-02-02                                        YouGov
## 2248 2021-01-31 2021-02-02                                        YouGov
## 2249 2021-01-31 2021-02-02                                        YouGov
## 2250 2021-01-31 2021-02-02                                        YouGov
## 2251 2021-02-02 2021-02-02                             Data for Progress
## 2252 2021-02-02 2021-02-02                             Data for Progress
## 2253 2021-02-02 2021-02-02                             Data for Progress
## 2254 2021-02-05 2021-02-06                                         Ipsos
## 2255 2021-02-05 2021-02-07                                        YouGov
## 2256 2021-02-05 2021-02-07                                        YouGov
## 2257 2021-02-05 2021-02-07                                        YouGov
## 2258 2021-02-05 2021-02-07                                        YouGov
## 2259 2021-02-06 2021-02-09                                        YouGov
## 2260 2021-02-06 2021-02-09                                        YouGov
## 2261 2021-02-06 2021-02-09                                        YouGov
## 2262 2021-02-06 2021-02-09                                        YouGov
## 2263 2021-02-08 2021-02-09                                       HarrisX
## 2264 2021-02-11 2021-02-14                                    Quinnipiac
## 2265 2021-02-11 2021-02-14                                    Quinnipiac
## 2266 2021-02-11 2021-02-14                                    Quinnipiac
## 2267 2021-02-11 2021-02-14                                    Quinnipiac
## 2268 2021-02-11 2021-02-15 Global Strategy Group/GBAO/Navigator Research
## 2269 2021-02-11 2021-02-15 Global Strategy Group/GBAO/Navigator Research
## 2270 2021-02-11 2021-02-15 Global Strategy Group/GBAO/Navigator Research
## 2271 2021-02-11 2021-02-15 Global Strategy Group/GBAO/Navigator Research
## 2272 2021-02-12 2021-02-15                               Morning Consult
## 2273 2021-02-12 2021-02-15                               Morning Consult
## 2274 2021-02-12 2021-02-15                               Morning Consult
## 2275 2021-02-12 2021-02-15                               Morning Consult
## 2276 2021-02-12 2021-02-15                                       HarrisX
## 2277 2021-02-12 2021-02-15                                        YouGov
## 2278 2021-02-12 2021-02-15                                        YouGov
## 2279 2021-02-12 2021-02-15                                        YouGov
## 2280 2021-02-12 2021-02-15                                        YouGov
## 2281 2021-02-13 2021-02-16                                        YouGov
## 2282 2021-02-13 2021-02-16                                        YouGov
## 2283 2021-02-13 2021-02-16                                        YouGov
## 2284 2021-02-13 2021-02-16                                        YouGov
## 2285 2021-02-03 2021-02-18                                        Gallup
## 2286 2021-02-03 2021-02-18                                        Gallup
## 2287 2021-02-03 2021-02-18                                        Gallup
## 2288 2021-02-03 2021-02-18                                        Gallup
## 2289 2021-02-12 2021-02-18                              Echelon Insights
## 2290 2021-02-17 2021-02-20                       American Research Group
## 2291 2021-02-17 2021-02-20                       American Research Group
## 2292 2021-02-17 2021-02-20                       American Research Group
## 2293 2021-02-17 2021-02-20                       American Research Group
## 2294 2021-02-18 2021-02-20                               Morning Consult
## 2295 2021-02-18 2021-02-20                               Morning Consult
## 2296 2021-02-18 2021-02-20                               Morning Consult
## 2297 2021-02-18 2021-02-20                               Morning Consult
## 2298 2021-02-19 2021-02-22                                        YouGov
## 2299 2021-02-19 2021-02-22                                        YouGov
## 2300 2021-02-19 2021-02-22                                        YouGov
## 2301 2021-02-19 2021-02-22                                        YouGov
## 2302 2021-02-15 2021-02-23                      Kaiser Family Foundation
## 2303 2021-02-15 2021-02-23                      Kaiser Family Foundation
## 2304 2021-02-15 2021-02-23                      Kaiser Family Foundation
## 2305 2021-02-15 2021-02-23                      Kaiser Family Foundation
## 2306 2021-02-23 2021-02-24                                       HarrisX
## 2307 2021-02-23 2021-02-24                                       HarrisX
## 2308 2021-02-23 2021-02-24                                       HarrisX
## 2309 2021-02-23 2021-02-24                                       HarrisX
## 2310 2021-02-23 2021-02-25                                   Harris Poll
## 2311 2021-02-23 2021-02-25                                   Harris Poll
## 2312 2021-02-23 2021-02-25                                   Harris Poll
## 2313 2021-02-23 2021-02-25                                   Harris Poll
## 2314 2021-02-26 2021-03-01                               Morning Consult
## 2315 2021-02-26 2021-03-01                               Morning Consult
## 2316 2021-02-26 2021-03-01                               Morning Consult
## 2317 2021-02-26 2021-03-01                               Morning Consult
## 2318 2021-02-25 2021-03-01 Global Strategy Group/GBAO/Navigator Research
## 2319 2021-02-25 2021-03-01 Global Strategy Group/GBAO/Navigator Research
## 2320 2021-02-25 2021-03-01 Global Strategy Group/GBAO/Navigator Research
## 2321 2021-02-25 2021-03-01 Global Strategy Group/GBAO/Navigator Research
## 2322 2021-02-25 2021-03-01                                       AP-NORC
## 2323 2021-02-25 2021-03-01                                       AP-NORC
## 2324 2021-02-25 2021-03-01                                       AP-NORC
## 2325 2021-02-25 2021-03-01                                       AP-NORC
## 2326 2021-02-27 2021-03-02                                        YouGov
## 2327 2021-02-27 2021-03-02                                        YouGov
## 2328 2021-02-27 2021-03-02                                        YouGov
## 2329 2021-02-27 2021-03-02                                        YouGov
## 2330 2021-03-02 2021-03-02                             Data for Progress
## 2331 2021-03-02 2021-03-02                             Data for Progress
## 2332 2021-03-02 2021-03-02                             Data for Progress
## 2333 2021-03-05 2021-03-06                                         Ipsos
## 2334 2021-03-04 2021-03-08                                        YouGov
## 2335 2021-03-04 2021-03-08                                        YouGov
## 2336 2021-03-04 2021-03-08                                        YouGov
## 2337 2021-03-04 2021-03-08                                        YouGov
## 2338 2021-03-03 2021-03-08                                          SSRS
## 2339 2021-03-03 2021-03-08                                          SSRS
## 2340 2021-03-03 2021-03-08                                          SSRS
## 2341 2021-03-03 2021-03-08                                          SSRS
## 2342 2021-03-03 2021-03-08                                        Marist
## 2343 2021-03-03 2021-03-08                                        Marist
## 2344 2021-03-03 2021-03-08                                        Marist
## 2345 2021-03-03 2021-03-08                                        Marist
## 2346 2021-03-05 2021-03-08                                       HarrisX
## 2347 2021-03-06 2021-03-09                                        YouGov
## 2348 2021-03-06 2021-03-09                                        YouGov
## 2349 2021-03-06 2021-03-09                                        YouGov
## 2350 2021-03-06 2021-03-09                                        YouGov
## 2351 2021-03-11 2021-03-12                                         Ipsos
## 2352 2021-03-11 2021-03-12                                         Ipsos
## 2353 2021-03-11 2021-03-12                                         Ipsos
## 2354 2021-03-11 2021-03-12                                         Ipsos
## 2355 2021-03-12 2021-03-14                                       HarrisX
## 2356 2021-03-12 2021-03-15                               Morning Consult
## 2357 2021-03-12 2021-03-15                               Morning Consult
## 2358 2021-03-12 2021-03-15                               Morning Consult
## 2359 2021-03-12 2021-03-15                               Morning Consult
## 2360 2021-03-11 2021-03-15 Global Strategy Group/GBAO/Navigator Research
## 2361 2021-03-11 2021-03-15 Global Strategy Group/GBAO/Navigator Research
## 2362 2021-03-11 2021-03-15 Global Strategy Group/GBAO/Navigator Research
## 2363 2021-03-11 2021-03-15 Global Strategy Group/GBAO/Navigator Research
## 2364 2021-03-13 2021-03-17                                        YouGov
## 2365 2021-03-13 2021-03-17                                        YouGov
## 2366 2021-03-13 2021-03-17                                        YouGov
## 2367 2021-03-13 2021-03-17                                        YouGov
## 2368 2021-03-17 2021-03-20                       American Research Group
## 2369 2021-03-17 2021-03-20                       American Research Group
## 2370 2021-03-17 2021-03-20                       American Research Group
## 2371 2021-03-17 2021-03-20                       American Research Group
## 2372 2021-03-15 2021-03-21                              Echelon Insights
## 2373 2021-03-21 2021-03-22                  Redfield & Wilton Strategies
## 2374 2021-03-17 2021-03-22                                 Climate Nexus
## 2375 2021-03-20 2021-03-23                                        YouGov
## 2376 2021-03-20 2021-03-23                                        YouGov
## 2377 2021-03-20 2021-03-23                                        YouGov
## 2378 2021-03-20 2021-03-23                                        YouGov
## 2379 2021-03-22 2021-03-23            Rasmussen (Pulse Opinion Research)
## 2380 2021-03-22 2021-03-23            Rasmussen (Pulse Opinion Research)
## 2381 2021-03-22 2021-03-23            Rasmussen (Pulse Opinion Research)
## 2382 2021-03-22 2021-03-23            Rasmussen (Pulse Opinion Research)
## 2383 2021-03-23 2021-03-25                                        YouGov
## 2384 2021-03-23 2021-03-25                                        YouGov
## 2385 2021-03-23 2021-03-25                                        YouGov
## 2386 2021-03-23 2021-03-25                                        YouGov
## 2387 2021-03-24 2021-03-25                                   Harris Poll
## 2388 2021-03-22 2021-03-25                                        Marist
## 2389 2021-03-22 2021-03-25                                        Marist
## 2390 2021-03-22 2021-03-25                                        Marist
## 2391 2021-03-22 2021-03-25                                        Marist
## 2392 2021-03-22 2021-03-25                                        Marist
## 2393 2021-03-24 2021-03-26                                       HarrisX
## 2394 2021-03-24 2021-03-26                                       HarrisX
## 2395 2021-03-24 2021-03-26                                       HarrisX
## 2396 2021-03-24 2021-03-26                                       HarrisX
## 2397 2021-03-26 2021-03-27                                         Ipsos
## 2398 2021-03-26 2021-03-29                               Morning Consult
## 2399 2021-03-26 2021-03-29                               Morning Consult
## 2400 2021-03-26 2021-03-29                               Morning Consult
## 2401 2021-03-26 2021-03-29                               Morning Consult
## 2402 2021-03-25 2021-03-29                                       AP-NORC
## 2403 2021-03-25 2021-03-29                                       AP-NORC
## 2404 2021-03-25 2021-03-29                                       AP-NORC
## 2405 2021-03-25 2021-03-29                                       AP-NORC
## 2406 2021-03-25 2021-03-29                               Morning Consult
## 2407 2021-03-25 2021-03-29                               Morning Consult
## 2408 2021-03-25 2021-03-29                               Morning Consult
## 2409 2021-03-25 2021-03-29                               Morning Consult
## 2410 2021-03-25 2021-03-29 Global Strategy Group/GBAO/Navigator Research
## 2411 2021-03-25 2021-03-29 Global Strategy Group/GBAO/Navigator Research
## 2412 2021-03-25 2021-03-29 Global Strategy Group/GBAO/Navigator Research
## 2413 2021-03-25 2021-03-29 Global Strategy Group/GBAO/Navigator Research
## 2414 2021-03-27 2021-03-30                                        YouGov
## 2415 2021-03-27 2021-03-30                                        YouGov
## 2416 2021-03-27 2021-03-30                                        YouGov
## 2417 2021-03-27 2021-03-30                                        YouGov
## 2418 2021-03-27 2021-03-30                                        YouGov
## 2419 2021-04-02 2021-04-05                                       HarrisX
## 2420 2021-04-02 2021-04-05                                       HarrisX
## 2421 2021-04-02 2021-04-05                                       HarrisX
## 2422 2021-04-02 2021-04-05                                       HarrisX
## 2423 2021-04-03 2021-04-06                                        YouGov
## 2424 2021-04-03 2021-04-06                                        YouGov
## 2425 2021-04-03 2021-04-06                                        YouGov
## 2426 2021-04-03 2021-04-06                                        YouGov
## 2427 2021-04-06 2021-04-06                             Data for Progress
## 2428 2021-04-06 2021-04-06                             Data for Progress
## 2429 2021-04-06 2021-04-06                             Data for Progress
## 2430 2021-04-06 2021-04-08                                        YouGov
## 2431 2021-04-06 2021-04-08                                        YouGov
## 2432 2021-04-06 2021-04-08                                        YouGov
## 2433 2021-04-06 2021-04-08                                        YouGov
## 2434 2021-04-07 2021-04-11                                       Winston
## 2435 2021-04-08 2021-04-11  CNBC/Hart Research/Public Opinion Strategies
## 2436 2021-04-09 2021-04-12                               Morning Consult
## 2437 2021-04-09 2021-04-12                               Morning Consult
## 2438 2021-04-09 2021-04-12                               Morning Consult
## 2439 2021-04-09 2021-04-12                               Morning Consult
## 2440 2021-04-08 2021-04-12                                    Quinnipiac
## 2441 2021-04-08 2021-04-12                                    Quinnipiac
## 2442 2021-04-08 2021-04-12                                    Quinnipiac
## 2443 2021-04-08 2021-04-12                                    Quinnipiac
## 2444 2021-04-08 2021-04-12 Global Strategy Group/GBAO/Navigator Research
## 2445 2021-04-08 2021-04-12 Global Strategy Group/GBAO/Navigator Research
## 2446 2021-04-08 2021-04-12 Global Strategy Group/GBAO/Navigator Research
## 2447 2021-04-08 2021-04-12 Global Strategy Group/GBAO/Navigator Research
## 2448 2021-04-10 2021-04-13                                        YouGov
## 2449 2021-04-10 2021-04-13                                        YouGov
## 2450 2021-04-10 2021-04-13                                        YouGov
## 2451 2021-04-10 2021-04-13                                        YouGov
## 2452 2021-04-09 2021-04-13                                       HarrisX
## 2453 2021-04-09 2021-04-13                                       HarrisX
## 2454 2021-04-09 2021-04-13                                       HarrisX
## 2455 2021-04-09 2021-04-13                                       HarrisX
## 2456 2021-04-12 2021-04-16                                         Ipsos
## 2457 2021-04-12 2021-04-16                                         Ipsos
## 2458 2021-04-12 2021-04-16                                         Ipsos
## 2459 2021-04-12 2021-04-16                                         Ipsos
## 2460 2021-04-12 2021-04-16                                         Ipsos
## 2461 2021-04-17 2021-04-20                                        YouGov
## 2462 2021-04-17 2021-04-20                                        YouGov
## 2463 2021-04-17 2021-04-20                                        YouGov
## 2464 2021-04-17 2021-04-20                                        YouGov
## 2465 2021-04-17 2021-04-20                       American Research Group
## 2466 2021-04-17 2021-04-20                       American Research Group
## 2467 2021-04-17 2021-04-20                       American Research Group
## 2468 2021-04-17 2021-04-20                       American Research Group
## 2469 2021-04-17 2021-04-20                       American Research Group
## 2470 2021-04-17 2021-04-20                                           NBC
## 2471 2021-04-15 2021-04-20                               Change Research
## 2472 2021-04-18 2021-04-21                                      Fox News
## 2473 2021-04-18 2021-04-21                                      Fox News
## 2474 2021-04-18 2021-04-21                                      Fox News
## 2475 2021-04-18 2021-04-21                                      Fox News
## 2476 2021-04-18 2021-04-21                                           ABC
## 2477 2021-04-18 2021-04-21                                           ABC
## 2478 2021-04-18 2021-04-21                                           ABC
## 2479 2021-04-18 2021-04-21                                           ABC
## 2480 2021-04-16 2021-04-23                              Echelon Insights
## 2481 2021-04-16 2021-04-23                              Echelon Insights
## 2482 2021-04-16 2021-04-23                              Echelon Insights
## 2483 2021-04-16 2021-04-23                              Echelon Insights
## 2484 2021-04-22 2021-04-26 Global Strategy Group/GBAO/Navigator Research
## 2485 2021-04-22 2021-04-26 Global Strategy Group/GBAO/Navigator Research
## 2486 2021-04-22 2021-04-26 Global Strategy Group/GBAO/Navigator Research
## 2487 2021-04-22 2021-04-26 Global Strategy Group/GBAO/Navigator Research
## 2488 2021-04-24 2021-04-26                               Morning Consult
## 2489 2021-04-24 2021-04-26                               Morning Consult
## 2490 2021-04-24 2021-04-26                               Morning Consult
## 2491 2021-04-24 2021-04-26                               Morning Consult
## 2492 2021-04-21 2021-04-26                                          SSRS
## 2493 2021-04-21 2021-04-26                                          SSRS
## 2494 2021-04-21 2021-04-26                                          SSRS
## 2495 2021-04-21 2021-04-26                                          SSRS
## 2496 2021-04-25 2021-04-27                                        YouGov
## 2497 2021-04-25 2021-04-27                                        YouGov
## 2498 2021-04-25 2021-04-27                                        YouGov
## 2499 2021-04-25 2021-04-27                                        YouGov
## 2500 2021-04-26 2021-04-28                                       HarrisX
## 2501 2021-04-26 2021-04-28                                       HarrisX
## 2502 2021-04-26 2021-04-28                                       HarrisX
## 2503 2021-04-26 2021-04-28                                       HarrisX
## 2504 2021-04-27 2021-04-29                                        YouGov
## 2505 2021-04-27 2021-04-29                                        YouGov
## 2506 2021-04-27 2021-04-29                                        YouGov
## 2507 2021-04-27 2021-04-29                                        YouGov
## 2508 2021-04-27 2021-04-29                                   Harris Poll
## 2509 2021-04-27 2021-04-29                                   Harris Poll
## 2510 2021-04-27 2021-04-29                                   Harris Poll
## 2511 2021-04-27 2021-04-29                                   Harris Poll
## 2512 2021-04-29 2021-05-03                                       AP-NORC
## 2513 2021-04-29 2021-05-03                                       AP-NORC
## 2514 2021-04-29 2021-05-03                                       AP-NORC
## 2515 2021-04-29 2021-05-03                                       AP-NORC
## 2516 2021-05-01 2021-05-04                                        YouGov
## 2517 2021-05-01 2021-05-04                                        YouGov
## 2518 2021-05-01 2021-05-04                                        YouGov
## 2519 2021-05-01 2021-05-04                                        YouGov
## 2520 2021-05-03 2021-05-04                                       HarrisX
## 2521 2021-05-03 2021-05-04                                       HarrisX
## 2522 2021-05-03 2021-05-04                                       HarrisX
## 2523 2021-05-03 2021-05-04                                       HarrisX
## 2524 2021-05-07 2021-05-09                               Morning Consult
## 2525 2021-05-07 2021-05-09                               Morning Consult
## 2526 2021-05-07 2021-05-09                               Morning Consult
## 2527 2021-05-07 2021-05-09                               Morning Consult
## 2528 2021-05-06 2021-05-10 Global Strategy Group/GBAO/Navigator Research
## 2529 2021-05-06 2021-05-10 Global Strategy Group/GBAO/Navigator Research
## 2530 2021-05-06 2021-05-10 Global Strategy Group/GBAO/Navigator Research
## 2531 2021-05-06 2021-05-10 Global Strategy Group/GBAO/Navigator Research
## 2532 2021-05-04 2021-05-10                                        Marist
## 2533 2021-05-04 2021-05-10                                        Marist
## 2534 2021-05-04 2021-05-10                                        Marist
## 2535 2021-05-04 2021-05-10                                        Marist
## 2536 2021-05-04 2021-05-10                                        Marist
## 2537 2021-05-08 2021-05-11                                        YouGov
## 2538 2021-05-08 2021-05-11                                        YouGov
## 2539 2021-05-08 2021-05-11                                        YouGov
## 2540 2021-05-08 2021-05-11                                        YouGov
## 2541 2021-05-11 2021-05-13                                        YouGov
## 2542 2021-05-11 2021-05-13                                        YouGov
## 2543 2021-05-11 2021-05-13                                        YouGov
## 2544 2021-05-11 2021-05-13                                        YouGov
## 2545 2021-05-15 2021-05-15                             Data for Progress
## 2546 2021-05-15 2021-05-15                             Data for Progress
## 2547 2021-05-15 2021-05-15                             Data for Progress
## 2548 2021-05-14 2021-05-17                              Echelon Insights
## 2549 2021-05-14 2021-05-17                              Echelon Insights
## 2550 2021-05-14 2021-05-17                              Echelon Insights
## 2551 2021-05-14 2021-05-17                              Echelon Insights
## 2552 2021-05-15 2021-05-18                                        YouGov
## 2553 2021-05-15 2021-05-18                                        YouGov
## 2554 2021-05-15 2021-05-18                                        YouGov
## 2555 2021-05-15 2021-05-18                                        YouGov
## 2556 2021-05-17 2021-05-19                                       HarrisX
## 2557 2021-05-17 2021-05-19                                       HarrisX
## 2558 2021-05-17 2021-05-19                                       HarrisX
## 2559 2021-05-17 2021-05-19                                       HarrisX
## 2560 2021-05-17 2021-05-20                       American Research Group
## 2561 2021-05-17 2021-05-20                       American Research Group
## 2562 2021-05-17 2021-05-20                       American Research Group
## 2563 2021-05-17 2021-05-20                       American Research Group
## 2564 2021-05-17 2021-05-20                       American Research Group
## 2565 2021-05-20 2021-05-24 Global Strategy Group/GBAO/Navigator Research
## 2566 2021-05-20 2021-05-24 Global Strategy Group/GBAO/Navigator Research
## 2567 2021-05-20 2021-05-24 Global Strategy Group/GBAO/Navigator Research
## 2568 2021-05-20 2021-05-24 Global Strategy Group/GBAO/Navigator Research
## 2569 2021-05-18 2021-05-24                                    Quinnipiac
## 2570 2021-05-18 2021-05-24                                    Quinnipiac
## 2571 2021-05-18 2021-05-24                                    Quinnipiac
## 2572 2021-05-18 2021-05-24                                    Quinnipiac
## 2573 2021-05-22 2021-05-25                                        YouGov
## 2574 2021-05-22 2021-05-25                                        YouGov
## 2575 2021-05-22 2021-05-25                                        YouGov
## 2576 2021-05-22 2021-05-25                                        YouGov
## 2577 2021-05-22 2021-05-25                                      Fox News
## 2578 2021-05-22 2021-05-25                                      Fox News
## 2579 2021-05-22 2021-05-25                                      Fox News
## 2580 2021-05-22 2021-05-25                                      Fox News
## 2581 2021-05-25 2021-05-26            Rasmussen (Pulse Opinion Research)
## 2582 2021-05-25 2021-05-26            Rasmussen (Pulse Opinion Research)
## 2583 2021-05-25 2021-05-26            Rasmussen (Pulse Opinion Research)
## 2584 2021-05-25 2021-05-26            Rasmussen (Pulse Opinion Research)
## 2585 2021-05-24 2021-05-26                                        YouGov
## 2586 2021-05-24 2021-05-26                                        YouGov
## 2587 2021-05-24 2021-05-26                                        YouGov
## 2588 2021-05-24 2021-05-26                                        YouGov
## 2589 2021-05-29 2021-06-01                                        YouGov
## 2590 2021-05-29 2021-06-01                                        YouGov
## 2591 2021-05-29 2021-06-01                                        YouGov
## 2592 2021-05-29 2021-06-01                                        YouGov
## 2593 2021-06-06 2021-06-08                                        YouGov
## 2594 2021-06-06 2021-06-08                                        YouGov
## 2595 2021-06-06 2021-06-08                                        YouGov
## 2596 2021-06-06 2021-06-08                                        YouGov
## 2597 2021-06-07 2021-06-09                                       HarrisX
## 2598 2021-06-07 2021-06-09                                       HarrisX
## 2599 2021-06-07 2021-06-09                                       HarrisX
## 2600 2021-06-07 2021-06-09                                       HarrisX
## 2601 2021-06-11 2021-06-13                               Morning Consult
## 2602 2021-06-11 2021-06-13                               Morning Consult
## 2603 2021-06-11 2021-06-13                               Morning Consult
## 2604 2021-06-11 2021-06-13                               Morning Consult
## 2605 2021-06-10 2021-06-14 Global Strategy Group/GBAO/Navigator Research
## 2606 2021-06-10 2021-06-14 Global Strategy Group/GBAO/Navigator Research
## 2607 2021-06-10 2021-06-14 Global Strategy Group/GBAO/Navigator Research
## 2608 2021-06-10 2021-06-14 Global Strategy Group/GBAO/Navigator Research
## 2609 2021-06-10 2021-06-14                                       AP-NORC
## 2610 2021-06-10 2021-06-14                                       AP-NORC
## 2611 2021-06-10 2021-06-14                                       AP-NORC
## 2612 2021-06-10 2021-06-14                                       AP-NORC
## 2613 2021-06-13 2021-06-15                                        YouGov
## 2614 2021-06-13 2021-06-15                                        YouGov
## 2615 2021-06-13 2021-06-15                                        YouGov
## 2616 2021-06-13 2021-06-15                                        YouGov
## 2617 2021-06-11 2021-06-17                                         Ipsos
## 2618 2021-06-11 2021-06-17                                         Ipsos
## 2619 2021-06-11 2021-06-17                                         Ipsos
## 2620 2021-06-11 2021-06-17                                         Ipsos
## 2621 2021-06-17 2021-06-20                       American Research Group
## 2622 2021-06-17 2021-06-20                       American Research Group
## 2623 2021-06-17 2021-06-20                       American Research Group
## 2624 2021-06-17 2021-06-20                       American Research Group
## 2625 2021-06-20 2021-06-22                                        YouGov
## 2626 2021-06-20 2021-06-22                                        YouGov
## 2627 2021-06-20 2021-06-22                                        YouGov
## 2628 2021-06-20 2021-06-22                                        YouGov
## 2629 2021-06-19 2021-06-22                                      Fox News
## 2630 2021-06-19 2021-06-22                                      Fox News
## 2631 2021-06-19 2021-06-22                                      Fox News
## 2632 2021-06-19 2021-06-22                                      Fox News
## 2633 2021-06-18 2021-06-22                              Echelon Insights
## 2634 2021-06-18 2021-06-22                              Echelon Insights
## 2635 2021-06-18 2021-06-22                              Echelon Insights
## 2636 2021-06-18 2021-06-22                              Echelon Insights
## 2637 2021-06-04 2021-06-23                                        YouGov
## 2638 2021-06-22 2021-06-24                                        YouGov
## 2639 2021-06-22 2021-06-24                                        YouGov
## 2640 2021-06-22 2021-06-24                                        YouGov
## 2641 2021-06-22 2021-06-24                                        YouGov
## 2642 2021-06-25 2021-06-28                               Morning Consult
## 2643 2021-06-25 2021-06-28                               Morning Consult
## 2644 2021-06-25 2021-06-28                               Morning Consult
## 2645 2021-06-25 2021-06-28                               Morning Consult
## 2646 2021-06-24 2021-06-28 Global Strategy Group/GBAO/Navigator Research
## 2647 2021-06-24 2021-06-28 Global Strategy Group/GBAO/Navigator Research
## 2648 2021-06-24 2021-06-28 Global Strategy Group/GBAO/Navigator Research
## 2649 2021-06-24 2021-06-28 Global Strategy Group/GBAO/Navigator Research
## 2650 2021-06-26 2021-06-29                                        YouGov
## 2651 2021-06-26 2021-06-29                                        YouGov
## 2652 2021-06-26 2021-06-29                                        YouGov
## 2653 2021-06-26 2021-06-29                                        YouGov
## 2654 2021-06-22 2021-06-29                                        Marist
## 2655 2021-06-22 2021-06-29                                        Marist
## 2656 2021-06-22 2021-06-29                                        Marist
## 2657 2021-06-22 2021-06-29                                        Marist
## 2658 2021-06-27 2021-06-30                                           ABC
## 2659 2021-06-27 2021-06-30                                           ABC
## 2660 2021-06-27 2021-06-30                                           ABC
## 2661 2021-06-27 2021-06-30                                           ABC
## 2662 2021-06-30 2021-07-02                                      IBD/TIPP
## 2663 2021-07-03 2021-07-06                                        YouGov
## 2664 2021-07-03 2021-07-06                                        YouGov
## 2665 2021-07-03 2021-07-06                                        YouGov
## 2666 2021-07-03 2021-07-06                                        YouGov
## 2667 2021-07-08 2021-07-09                                       HarrisX
## 2668 2021-07-08 2021-07-09                                       HarrisX
## 2669 2021-07-08 2021-07-09                                       HarrisX
## 2670 2021-07-08 2021-07-09                                       HarrisX
## 2671 2021-07-10 2021-07-13                                        YouGov
## 2672 2021-07-10 2021-07-13                                        YouGov
## 2673 2021-07-10 2021-07-13                                        YouGov
## 2674 2021-07-10 2021-07-13                                        YouGov
## 2675 2021-07-13 2021-07-14            Rasmussen (Pulse Opinion Research)
## 2676 2021-07-13 2021-07-14            Rasmussen (Pulse Opinion Research)
## 2677 2021-07-13 2021-07-14            Rasmussen (Pulse Opinion Research)
## 2678 2021-07-13 2021-07-14            Rasmussen (Pulse Opinion Research)
## 2679 2021-07-13 2021-07-15                                        YouGov
## 2680 2021-07-13 2021-07-15                                        YouGov
## 2681 2021-07-13 2021-07-15                                        YouGov
## 2682 2021-07-13 2021-07-15                                        YouGov
## 2683 2021-07-15 2021-07-16                       Sacred Heart University
## 2684 2021-07-16 2021-07-18                               Morning Consult
## 2685 2021-07-16 2021-07-18                               Morning Consult
## 2686 2021-07-16 2021-07-18                               Morning Consult
## 2687 2021-07-16 2021-07-18                               Morning Consult
## 2688 2021-07-15 2021-07-18                               Morning Consult
## 2689 2021-07-15 2021-07-19 Global Strategy Group/GBAO/Navigator Research
## 2690 2021-07-15 2021-07-19 Global Strategy Group/GBAO/Navigator Research
## 2691 2021-07-15 2021-07-19 Global Strategy Group/GBAO/Navigator Research
## 2692 2021-07-15 2021-07-19 Global Strategy Group/GBAO/Navigator Research
## 2693 2021-07-15 2021-07-19                                       AP-NORC
## 2694 2021-07-15 2021-07-19                                       AP-NORC
## 2695 2021-07-15 2021-07-19                                       AP-NORC
## 2696 2021-07-15 2021-07-19                                       AP-NORC
## 2697 2021-07-17 2021-07-20                       American Research Group
## 2698 2021-07-17 2021-07-20                       American Research Group
## 2699 2021-07-17 2021-07-20                       American Research Group
## 2700 2021-07-17 2021-07-20                       American Research Group
## 2701 2021-07-17 2021-07-20                                        YouGov
## 2702 2021-07-17 2021-07-20                                        YouGov
## 2703 2021-07-17 2021-07-20                                        YouGov
## 2704 2021-07-17 2021-07-20                                        YouGov
## 2705 2021-07-20 2021-07-21                                       HarrisX
## 2706 2021-07-20 2021-07-21                                       HarrisX
## 2707 2021-07-20 2021-07-21                                       HarrisX
## 2708 2021-07-20 2021-07-21                                       HarrisX
## 2709 2021-07-19 2021-07-23                              Echelon Insights
## 2710 2021-07-19 2021-07-23                              Echelon Insights
## 2711 2021-07-19 2021-07-23                              Echelon Insights
## 2712 2021-07-19 2021-07-23                              Echelon Insights
## 2713 2021-07-23 2021-07-24                                         Ipsos
## 2714 2021-07-24 2021-07-27                                        YouGov
## 2715 2021-07-24 2021-07-27                                        YouGov
## 2716 2021-07-24 2021-07-27                                        YouGov
## 2717 2021-07-24 2021-07-27                                        YouGov
## 2718 2021-07-24 2021-07-28  CNBC/Hart Research/Public Opinion Strategies
## 2719 2021-07-28 2021-07-30                                      IBD/TIPP
## 2720 2021-07-31 2021-08-02                               Morning Consult
## 2721 2021-07-31 2021-08-02                               Morning Consult
## 2722 2021-07-31 2021-08-02                               Morning Consult
## 2723 2021-07-31 2021-08-02                               Morning Consult
## 2724 2021-07-31 2021-08-02                               Morning Consult
## 2725 2021-07-31 2021-08-02                               Morning Consult
## 2726 2021-07-31 2021-08-02                               Morning Consult
## 2727 2021-07-31 2021-08-02                               Morning Consult
## 2728 2021-07-27 2021-08-02                                    Quinnipiac
## 2729 2021-07-27 2021-08-02                                    Quinnipiac
## 2730 2021-07-27 2021-08-02                                    Quinnipiac
## 2731 2021-07-27 2021-08-02                                    Quinnipiac
## 2732 2021-07-29 2021-08-02 Global Strategy Group/GBAO/Navigator Research
## 2733 2021-07-29 2021-08-02 Global Strategy Group/GBAO/Navigator Research
## 2734 2021-07-29 2021-08-02 Global Strategy Group/GBAO/Navigator Research
## 2735 2021-07-29 2021-08-02 Global Strategy Group/GBAO/Navigator Research
## 2736 2021-08-02 2021-08-02                             Data for Progress
## 2737 2021-08-02 2021-08-02                             Data for Progress
## 2738 2021-08-02 2021-08-02                             Data for Progress
## 2739 2021-07-30 2021-08-02                                        YouGov
## 2740 2021-07-30 2021-08-02                                        YouGov
## 2741 2021-07-30 2021-08-02                                        YouGov
## 2742 2021-07-30 2021-08-02                                        YouGov
## 2743 2021-07-31 2021-08-03                                        YouGov
## 2744 2021-07-31 2021-08-03                                        YouGov
## 2745 2021-07-31 2021-08-03                                        YouGov
## 2746 2021-07-31 2021-08-03                                        YouGov
## 2747 2021-08-02 2021-08-03                  Redfield & Wilton Strategies
## 2748 2021-08-04 2021-08-05                                       HarrisX
## 2749 2021-08-04 2021-08-05                                       HarrisX
## 2750 2021-08-04 2021-08-05                                       HarrisX
## 2751 2021-08-04 2021-08-05                                       HarrisX
## 2752 2021-08-03 2021-08-05                                OnMessage Inc.
## 2753 2021-08-07 2021-08-10                                        YouGov
## 2754 2021-08-07 2021-08-10                                        YouGov
## 2755 2021-08-07 2021-08-10                                        YouGov
## 2756 2021-08-07 2021-08-10                                        YouGov
## 2757 2021-08-07 2021-08-10                                      Fox News
## 2758 2021-08-07 2021-08-10                                      Fox News
## 2759 2021-08-07 2021-08-10                                      Fox News
## 2760 2021-08-07 2021-08-10                                      Fox News
## 2761 2021-08-13 2021-08-16                               Morning Consult
## 2762 2021-08-13 2021-08-16                               Morning Consult
## 2763 2021-08-13 2021-08-16                               Morning Consult
## 2764 2021-08-13 2021-08-16                               Morning Consult
## 2765 2021-08-12 2021-08-16 Global Strategy Group/GBAO/Navigator Research
## 2766 2021-08-12 2021-08-16 Global Strategy Group/GBAO/Navigator Research
## 2767 2021-08-12 2021-08-16 Global Strategy Group/GBAO/Navigator Research
## 2768 2021-08-12 2021-08-16 Global Strategy Group/GBAO/Navigator Research
## 2769 2021-08-12 2021-08-16                                       AP-NORC
## 2770 2021-08-12 2021-08-16                                       AP-NORC
## 2771 2021-08-12 2021-08-16                                       AP-NORC
## 2772 2021-08-12 2021-08-16                                       AP-NORC
## 2773 2021-08-14 2021-08-17                                        YouGov
## 2774 2021-08-14 2021-08-17                                        YouGov
## 2775 2021-08-14 2021-08-17                                        YouGov
## 2776 2021-08-14 2021-08-17                                        YouGov
## 2777 2021-08-02 2021-08-17                                        Gallup
## 2778 2021-08-02 2021-08-17                                        Gallup
## 2779 2021-08-02 2021-08-17                                        Gallup
## 2780 2021-08-02 2021-08-17                                        Gallup
## 2781 2021-08-14 2021-08-17                                           NBC
## 2782 2021-08-12 2021-08-18                                   Susquehanna
## 2783 2021-08-12 2021-08-18                                   Susquehanna
## 2784 2021-08-12 2021-08-18                                   Susquehanna
## 2785 2021-08-12 2021-08-18                                   Susquehanna
## 2786 2021-08-16 2021-08-18                                        YouGov
## 2787 2021-08-16 2021-08-18                                        YouGov
## 2788 2021-08-16 2021-08-18                                        YouGov
## 2789 2021-08-16 2021-08-18                                        YouGov
## 2790 2021-08-13 2021-08-18                              Echelon Insights
## 2791 2021-08-13 2021-08-18                              Echelon Insights
## 2792 2021-08-13 2021-08-18                              Echelon Insights
## 2793 2021-08-13 2021-08-18                              Echelon Insights
## 2794 2021-08-13 2021-08-19                                         Ipsos
## 2795 2021-08-13 2021-08-19                                         Ipsos
## 2796 2021-08-13 2021-08-19                                         Ipsos
## 2797 2021-08-13 2021-08-19                                         Ipsos
## 2798 2021-08-17 2021-08-20                       American Research Group
## 2799 2021-08-17 2021-08-20                       American Research Group
## 2800 2021-08-17 2021-08-20                       American Research Group
## 2801 2021-08-17 2021-08-20                       American Research Group
## 2802 2021-08-17 2021-08-20                       American Research Group
## 2803 2021-08-20 2021-08-22                                       HarrisX
## 2804 2021-08-20 2021-08-22                                       HarrisX
## 2805 2021-08-20 2021-08-22                                       HarrisX
## 2806 2021-08-20 2021-08-22                                       HarrisX
## 2807 2021-08-19 2021-08-22                               Morning Consult
## 2808 2021-08-19 2021-08-22                               Morning Consult
## 2809 2021-08-19 2021-08-22                               Morning Consult
## 2810 2021-08-19 2021-08-22                               Morning Consult
## 2811 2021-08-19 2021-08-23                                       Suffolk
## 2812 2021-08-19 2021-08-23                                       Suffolk
## 2813 2021-08-19 2021-08-23                                       Suffolk
## 2814 2021-08-19 2021-08-23                                       Suffolk
## 2815 2021-08-21 2021-08-24                                        YouGov
## 2816 2021-08-21 2021-08-24                                        YouGov
## 2817 2021-08-21 2021-08-24                                        YouGov
## 2818 2021-08-21 2021-08-24                                        YouGov
## 2819 2021-08-27 2021-08-28                                         Ipsos
## 2820 2021-08-27 2021-08-30                                         Ipsos
## 2821 2021-08-27 2021-08-30                                         Ipsos
## 2822 2021-08-27 2021-08-30                                         Ipsos
## 2823 2021-08-27 2021-08-30                                         Ipsos
## 2824 2021-08-28 2021-08-30                               Morning Consult
## 2825 2021-08-28 2021-08-30                               Morning Consult
## 2826 2021-08-28 2021-08-30                               Morning Consult
## 2827 2021-08-28 2021-08-30                               Morning Consult
## 2828 2021-08-26 2021-08-30 Global Strategy Group/GBAO/Navigator Research
## 2829 2021-08-26 2021-08-30 Global Strategy Group/GBAO/Navigator Research
## 2830 2021-08-26 2021-08-30 Global Strategy Group/GBAO/Navigator Research
## 2831 2021-08-26 2021-08-30 Global Strategy Group/GBAO/Navigator Research
## 2832 2021-08-28 2021-08-31                                        YouGov
## 2833 2021-08-28 2021-08-31                                        YouGov
## 2834 2021-08-28 2021-08-31                                        YouGov
## 2835 2021-08-28 2021-08-31                                        YouGov
## 2836 2021-08-26 2021-08-31                                        Marist
## 2837 2021-08-26 2021-08-31                                        Marist
## 2838 2021-08-26 2021-08-31                                        Marist
## 2839 2021-08-26 2021-08-31                                        Marist
## 2840 2021-08-26 2021-08-31                                        Marist
## 2841 2021-08-29 2021-09-01                                           ABC
## 2842 2021-08-29 2021-09-01                                           ABC
## 2843 2021-08-29 2021-09-01                                           ABC
## 2844 2021-08-29 2021-09-01                                           ABC
## 2845 2021-08-30 2021-09-01                                        YouGov
## 2846 2021-08-30 2021-09-01                                        YouGov
## 2847 2021-08-30 2021-09-01                                        YouGov
## 2848 2021-08-30 2021-09-01                                        YouGov
## 2849 2021-08-30 2021-09-02                               Change Research
## 2850 2021-09-04 2021-09-05                  Redfield & Wilton Strategies
## 2851 2021-09-04 2021-09-05                  Redfield & Wilton Strategies
## 2852 2021-09-04 2021-09-05                  Redfield & Wilton Strategies
## 2853 2021-09-04 2021-09-05                  Redfield & Wilton Strategies
## 2854 2021-09-04 2021-09-07                                        YouGov
## 2855 2021-09-04 2021-09-07                                        YouGov
## 2856 2021-09-04 2021-09-07                                        YouGov
## 2857 2021-09-04 2021-09-07                                        YouGov
## 2858 2021-08-03 2021-09-07                                          SSRS
## 2859 2021-08-03 2021-09-07                                          SSRS
## 2860 2021-08-03 2021-09-07                                          SSRS
## 2861 2021-08-03 2021-09-07                                          SSRS
## 2862 2021-09-08 2021-09-09                                       HarrisX
## 2863 2021-09-08 2021-09-09                                       HarrisX
## 2864 2021-09-08 2021-09-09                                       HarrisX
## 2865 2021-09-08 2021-09-09                                       HarrisX
## 2866 2021-09-10 2021-09-11                                       HarrisX
## 2867 2021-09-10 2021-09-13                                    Quinnipiac
## 2868 2021-09-10 2021-09-13                                    Quinnipiac
## 2869 2021-09-10 2021-09-13                                    Quinnipiac
## 2870 2021-09-10 2021-09-13                                    Quinnipiac
## 2871 2021-09-09 2021-09-13 Global Strategy Group/GBAO/Navigator Research
## 2872 2021-09-09 2021-09-13 Global Strategy Group/GBAO/Navigator Research
## 2873 2021-09-09 2021-09-13 Global Strategy Group/GBAO/Navigator Research
## 2874 2021-09-09 2021-09-13 Global Strategy Group/GBAO/Navigator Research
## 2875 2021-09-12 2021-09-14                                        YouGov
## 2876 2021-09-12 2021-09-14                                        YouGov
## 2877 2021-09-12 2021-09-14                                        YouGov
## 2878 2021-09-12 2021-09-14                                        YouGov
## 2879 2021-09-12 2021-09-15                                      Fox News
## 2880 2021-09-12 2021-09-15                                      Fox News
## 2881 2021-09-12 2021-09-15                                      Fox News
## 2882 2021-09-12 2021-09-15                                      Fox News
## 2883 2021-09-15 2021-09-16                                         Ipsos
## 2884 2021-09-07 2021-09-16                                     Marquette
## 2885 2021-09-07 2021-09-16                                     Marquette
## 2886 2021-09-07 2021-09-16                                     Marquette
## 2887 2021-09-07 2021-09-16                                     Marquette
## 2888 2021-09-17 2021-09-20                       American Research Group
## 2889 2021-09-17 2021-09-20                       American Research Group
## 2890 2021-09-17 2021-09-20                       American Research Group
## 2891 2021-09-17 2021-09-20                       American Research Group
## 2892 2021-09-18 2021-09-20                               Morning Consult
## 2893 2021-09-18 2021-09-20                               Morning Consult
## 2894 2021-09-18 2021-09-20                               Morning Consult
## 2895 2021-09-18 2021-09-20                               Morning Consult
## 2896 2021-09-14 2021-09-20                                        YouGov
## 2897 2021-09-14 2021-09-20                                        YouGov
## 2898 2021-09-14 2021-09-20                                        YouGov
## 2899 2021-09-14 2021-09-20                                        YouGov
## 2900 2021-09-19 2021-09-20                  Redfield & Wilton Strategies
## 2901 2021-09-19 2021-09-20                  Redfield & Wilton Strategies
## 2902 2021-09-19 2021-09-20                  Redfield & Wilton Strategies
## 2903 2021-09-19 2021-09-20                  Redfield & Wilton Strategies
## 2904 2021-09-18 2021-09-21                                        YouGov
## 2905 2021-09-18 2021-09-21                                        YouGov
## 2906 2021-09-18 2021-09-21                                        YouGov
## 2907 2021-09-18 2021-09-21                                        YouGov
## 2908 2021-09-17 2021-09-23                              Echelon Insights
## 2909 2021-09-17 2021-09-23                              Echelon Insights
## 2910 2021-09-17 2021-09-23                              Echelon Insights
## 2911 2021-09-17 2021-09-23                              Echelon Insights
## 2912 2021-09-23 2021-09-27                                       AP-NORC
## 2913 2021-09-23 2021-09-27                                       AP-NORC
## 2914 2021-09-23 2021-09-27                                       AP-NORC
## 2915 2021-09-23 2021-09-27                                       AP-NORC
## 2916 2021-09-23 2021-09-27 Global Strategy Group/GBAO/Navigator Research
## 2917 2021-09-23 2021-09-27 Global Strategy Group/GBAO/Navigator Research
## 2918 2021-09-23 2021-09-27 Global Strategy Group/GBAO/Navigator Research
## 2919 2021-09-23 2021-09-27 Global Strategy Group/GBAO/Navigator Research
## 2920 2021-08-26 2021-09-27                                  PureSpectrum
## 2921 2021-09-24 2021-09-28                                         Ipsos
## 2922 2021-09-26 2021-09-28                                        YouGov
## 2923 2021-09-26 2021-09-28                                        YouGov
## 2924 2021-09-26 2021-09-28                                        YouGov
## 2925 2021-09-26 2021-09-28                                        YouGov
## 2926 2021-09-27 2021-09-28                                       HarrisX
## 2927 2021-09-16 2021-09-29            Public Religion Research Institute
## 2928 2021-09-16 2021-09-29            Public Religion Research Institute
## 2929 2021-09-16 2021-09-29            Public Religion Research Institute
## 2930 2021-09-16 2021-09-29            Public Religion Research Institute
## 2931 2021-09-29 2021-10-02                                      IBD/TIPP
## 2932 2021-10-02 2021-10-04                               Morning Consult
## 2933 2021-10-02 2021-10-04                               Morning Consult
## 2934 2021-10-02 2021-10-04                               Morning Consult
## 2935 2021-10-02 2021-10-04                               Morning Consult
## 2936 2021-10-01 2021-10-04                                    Quinnipiac
## 2937 2021-10-01 2021-10-04                                    Quinnipiac
## 2938 2021-10-01 2021-10-04                                    Quinnipiac
## 2939 2021-10-01 2021-10-04                                    Quinnipiac
## 2940 2021-10-01 2021-10-04                                        YouGov
## 2941 2021-10-01 2021-10-04                                        YouGov
## 2942 2021-10-01 2021-10-04                                        YouGov
## 2943 2021-10-01 2021-10-04                                        YouGov
## 2944 2021-10-03 2021-10-05                                        YouGov
## 2945 2021-10-03 2021-10-05                                        YouGov
## 2946 2021-10-03 2021-10-05                                        YouGov
## 2947 2021-10-03 2021-10-05                                        YouGov
## 2948 2021-10-05 2021-10-05                  Redfield & Wilton Strategies
## 2949 2021-10-05 2021-10-05                  Redfield & Wilton Strategies
## 2950 2021-10-05 2021-10-05                  Redfield & Wilton Strategies
## 2951 2021-10-05 2021-10-05                  Redfield & Wilton Strategies
## 2952 2021-10-07 2021-10-11 Global Strategy Group/GBAO/Navigator Research
## 2953 2021-10-07 2021-10-11 Global Strategy Group/GBAO/Navigator Research
## 2954 2021-10-07 2021-10-11 Global Strategy Group/GBAO/Navigator Research
## 2955 2021-10-07 2021-10-11 Global Strategy Group/GBAO/Navigator Research
## 2956 2021-10-09 2021-10-12                                        YouGov
## 2957 2021-10-09 2021-10-12                                        YouGov
## 2958 2021-10-09 2021-10-12                                        YouGov
## 2959 2021-10-09 2021-10-12                                        YouGov
## 2960 2021-10-11 2021-10-13                                  RMG Research
## 2961 2021-10-11 2021-10-13                                  RMG Research
## 2962 2021-10-11 2021-10-13                                  RMG Research
## 2963 2021-10-11 2021-10-13                                  RMG Research
## 2964 2021-10-13 2021-10-17                                        Selzer
## 2965 2021-10-13 2021-10-17                                        Selzer
## 2966 2021-10-13 2021-10-17                                        Selzer
## 2967 2021-10-13 2021-10-17                                        Selzer
## 2968 2021-10-14 2021-10-17  CNBC/Hart Research/Public Opinion Strategies
## 2969 2021-10-17 2021-10-17                  Redfield & Wilton Strategies
## 2970 2021-10-17 2021-10-17                  Redfield & Wilton Strategies
## 2971 2021-10-17 2021-10-17                  Redfield & Wilton Strategies
## 2972 2021-10-17 2021-10-17                  Redfield & Wilton Strategies
## 2973 2021-10-16 2021-10-18                               Morning Consult
## 2974 2021-10-16 2021-10-18                               Morning Consult
## 2975 2021-10-16 2021-10-18                               Morning Consult
## 2976 2021-10-16 2021-10-18                               Morning Consult
## 2977 2021-10-16 2021-10-19                                        YouGov
## 2978 2021-10-16 2021-10-19                                        YouGov
## 2979 2021-10-16 2021-10-19                                        YouGov
## 2980 2021-10-16 2021-10-19                                        YouGov
## 2981 2021-10-16 2021-10-19                                      Fox News
## 2982 2021-10-16 2021-10-19                                      Fox News
## 2983 2021-10-16 2021-10-19                                      Fox News
## 2984 2021-10-16 2021-10-19                                      Fox News
## 2985 2021-10-15 2021-10-19                              Echelon Insights
## 2986 2021-10-15 2021-10-19                              Echelon Insights
## 2987 2021-10-15 2021-10-19                              Echelon Insights
## 2988 2021-10-15 2021-10-19                              Echelon Insights
## 2989 2021-10-17 2021-10-20                       American Research Group
## 2990 2021-10-17 2021-10-20                       American Research Group
## 2991 2021-10-17 2021-10-20                       American Research Group
## 2992 2021-10-17 2021-10-20                       American Research Group
## 2993 2021-10-17 2021-10-21            Georgetown University/Battleground
## 2994 2021-10-17 2021-10-21            Georgetown University/Battleground
## 2995 2021-10-17 2021-10-21            Georgetown University/Battleground
## 2996 2021-10-17 2021-10-21            Georgetown University/Battleground
## 2997 2021-10-20 2021-10-23                                       HarrisX
## 2998 2021-10-20 2021-10-23                                       HarrisX
## 2999 2021-10-20 2021-10-23                                       HarrisX
## 3000 2021-10-20 2021-10-23                                       HarrisX
## 3001 2021-10-22 2021-10-25 Global Strategy Group/GBAO/Navigator Research
## 3002 2021-10-22 2021-10-25 Global Strategy Group/GBAO/Navigator Research
## 3003 2021-10-22 2021-10-25 Global Strategy Group/GBAO/Navigator Research
## 3004 2021-10-22 2021-10-25 Global Strategy Group/GBAO/Navigator Research
## 3005 2021-10-21 2021-10-25                                       AP-NORC
## 3006 2021-10-24 2021-10-26                                        YouGov
## 3007 2021-10-24 2021-10-26                                        YouGov
## 3008 2021-10-24 2021-10-26                                        YouGov
## 3009 2021-10-24 2021-10-26                                        YouGov
## 3010 2021-10-23 2021-10-26                                           NBC
## 3011 2021-10-27 2021-10-28                                   Harris Poll
## 3012 2021-10-27 2021-10-28                                   Harris Poll
## 3013 2021-10-27 2021-10-28                                   Harris Poll
## 3014 2021-10-27 2021-10-28                                   Harris Poll
## 3015 2021-10-29 2021-10-30                                         Ipsos
## 3016 2021-10-24 2021-10-30                               Morning Consult
## 3017 2021-10-31 2021-10-31                  Redfield & Wilton Strategies
## 3018 2021-10-31 2021-10-31                  Redfield & Wilton Strategies
## 3019 2021-10-31 2021-10-31                  Redfield & Wilton Strategies
## 3020 2021-10-31 2021-10-31                  Redfield & Wilton Strategies
## 3021 2021-10-30 2021-11-01                               Morning Consult
## 3022 2021-10-30 2021-11-01                               Morning Consult
## 3023 2021-10-30 2021-11-01                               Morning Consult
## 3024 2021-10-30 2021-11-01                               Morning Consult
## 3025 2021-10-30 2021-11-02                                        YouGov
## 3026 2021-10-30 2021-11-02                                        YouGov
## 3027 2021-10-30 2021-11-02                                        YouGov
## 3028 2021-10-30 2021-11-02                                        YouGov
## 3029 2021-11-03 2021-11-05                                       Suffolk
## 3030 2021-11-03 2021-11-05                                       Suffolk
## 3031 2021-11-03 2021-11-05                                       Suffolk
## 3032 2021-11-03 2021-11-05                                       Suffolk
## 3033 2021-11-04 2021-11-08 Global Strategy Group/GBAO/Navigator Research
## 3034 2021-11-04 2021-11-08 Global Strategy Group/GBAO/Navigator Research
## 3035 2021-11-04 2021-11-08 Global Strategy Group/GBAO/Navigator Research
## 3036 2021-11-04 2021-11-08 Global Strategy Group/GBAO/Navigator Research
## 3037 2021-11-04 2021-11-08                                        YouGov
## 3038 2021-11-04 2021-11-08                                        YouGov
## 3039 2021-11-04 2021-11-08                                        YouGov
## 3040 2021-11-04 2021-11-08                                        YouGov
## 3041 2021-11-06 2021-11-09                                        YouGov
## 3042 2021-11-06 2021-11-09                                        YouGov
## 3043 2021-11-06 2021-11-09                                        YouGov
## 3044 2021-11-06 2021-11-09                                        YouGov
## 3045 2021-11-01 2021-11-09                                   Susquehanna
## 3046 2021-11-01 2021-11-09                                   Susquehanna
## 3047 2021-11-01 2021-11-09                                   Susquehanna
## 3048 2021-11-01 2021-11-09                                   Susquehanna
## 3049 2021-11-07 2021-11-10                                           ABC
## 3050 2021-11-07 2021-11-10                                           ABC
## 3051 2021-11-07 2021-11-10                                           ABC
## 3052 2021-11-07 2021-11-10                                           ABC
## 3053 2021-11-13 2021-11-15                               Morning Consult
## 3054 2021-11-13 2021-11-15                               Morning Consult
## 3055 2021-11-13 2021-11-15                               Morning Consult
## 3056 2021-11-13 2021-11-15                               Morning Consult
## 3057 2021-11-11 2021-11-15                                    Quinnipiac
## 3058 2021-11-11 2021-11-15                                    Quinnipiac
## 3059 2021-11-11 2021-11-15                                    Quinnipiac
## 3060 2021-11-11 2021-11-15                                    Quinnipiac
## 3061 2021-11-15 2021-11-15                  Redfield & Wilton Strategies
## 3062 2021-11-15 2021-11-15                  Redfield & Wilton Strategies
## 3063 2021-11-15 2021-11-15                  Redfield & Wilton Strategies
## 3064 2021-11-15 2021-11-15                  Redfield & Wilton Strategies
## 3065 2021-11-14 2021-11-16                                        YouGov
## 3066 2021-11-14 2021-11-16                                        YouGov
## 3067 2021-11-14 2021-11-16                                        YouGov
## 3068 2021-11-14 2021-11-16                                        YouGov
## 3069 2021-11-01 2021-11-16                                        Gallup
## 3070 2021-11-01 2021-11-16                                        Gallup
## 3071 2021-11-01 2021-11-16                                        Gallup
## 3072 2021-11-01 2021-11-16                                        Gallup
## 3073 2021-11-14 2021-11-17                                      Fox News
## 3074 2021-11-14 2021-11-17                                      Fox News
## 3075 2021-11-14 2021-11-17                                      Fox News
## 3076 2021-11-14 2021-11-17                                      Fox News
## 3077 2021-11-12 2021-11-18                              Echelon Insights
## 3078 2021-11-12 2021-11-18                              Echelon Insights
## 3079 2021-11-12 2021-11-18                              Echelon Insights
## 3080 2021-11-12 2021-11-18                              Echelon Insights
## 3081 2021-11-17 2021-11-19                                        YouGov
## 3082 2021-11-17 2021-11-19                                        YouGov
## 3083 2021-11-17 2021-11-19                                        YouGov
## 3084 2021-11-17 2021-11-19                                        YouGov
## 3085 2021-11-17 2021-11-20                       American Research Group
## 3086 2021-11-17 2021-11-20                       American Research Group
## 3087 2021-11-17 2021-11-20                       American Research Group
## 3088 2021-11-17 2021-11-20                       American Research Group
## 3089 2021-11-18 2021-11-22 Global Strategy Group/GBAO/Navigator Research
## 3090 2021-11-18 2021-11-22 Global Strategy Group/GBAO/Navigator Research
## 3091 2021-11-18 2021-11-22 Global Strategy Group/GBAO/Navigator Research
## 3092 2021-11-18 2021-11-22 Global Strategy Group/GBAO/Navigator Research
## 3093 2021-11-08 2021-11-22                      Kaiser Family Foundation
## 3094 2021-11-20 2021-11-23                                        YouGov
## 3095 2021-11-20 2021-11-23                                        YouGov
## 3096 2021-11-20 2021-11-23                                        YouGov
## 3097 2021-11-20 2021-11-23                                        YouGov
## 3098 2021-11-27 2021-11-30                                        YouGov
## 3099 2021-11-27 2021-11-30                                        YouGov
## 3100 2021-11-27 2021-11-30                                        YouGov
## 3101 2021-11-27 2021-11-30                                        YouGov
## 3102 2021-12-01 2021-12-04                                      IBD/TIPP
## 3103 2021-12-01 2021-12-04  CNBC/Hart Research/Public Opinion Strategies
## 3104 2021-12-05 2021-12-05                  Redfield & Wilton Strategies
## 3105 2021-12-05 2021-12-05                  Redfield & Wilton Strategies
## 3106 2021-12-05 2021-12-05                  Redfield & Wilton Strategies
## 3107 2021-12-05 2021-12-05                  Redfield & Wilton Strategies
## 3108 2021-12-04 2021-12-06                               Morning Consult
## 3109 2021-12-04 2021-12-06                               Morning Consult
## 3110 2021-12-04 2021-12-06                               Morning Consult
## 3111 2021-12-04 2021-12-06                               Morning Consult
## 3112 2021-12-05 2021-12-06            Rasmussen (Pulse Opinion Research)
## 3113 2021-11-30 2021-12-06                                        Marist
## 3114 2021-11-30 2021-12-06                                        Marist
## 3115 2021-11-30 2021-12-06                                        Marist
## 3116 2021-11-30 2021-12-06                                        Marist
## 3117 2021-12-03 2021-12-06 Global Strategy Group/GBAO/Navigator Research
## 3118 2021-12-03 2021-12-06 Global Strategy Group/GBAO/Navigator Research
## 3119 2021-12-03 2021-12-06 Global Strategy Group/GBAO/Navigator Research
## 3120 2021-12-03 2021-12-06 Global Strategy Group/GBAO/Navigator Research
## 3121 2021-12-04 2021-12-07                                        YouGov
## 3122 2021-12-04 2021-12-07                                        YouGov
## 3123 2021-12-04 2021-12-07                                        YouGov
## 3124 2021-12-04 2021-12-07                                        YouGov
## 3125 2021-12-02 2021-12-07                                       AP-NORC
## 3126 2021-12-08 2021-12-10                                  RMG Research
## 3127 2021-12-08 2021-12-10                                  RMG Research
## 3128 2021-12-08 2021-12-10                                  RMG Research
## 3129 2021-12-08 2021-12-10                                  RMG Research
## 3130 2021-12-10 2021-12-11                                         Ipsos
## 3131 2021-12-08 2021-12-12                                          SSRS
## 3132 2021-12-08 2021-12-12                                          SSRS
## 3133 2021-12-08 2021-12-12                                          SSRS
## 3134 2021-12-08 2021-12-12                                          SSRS
## 3135 2021-12-09 2021-12-13                              Echelon Insights
## 3136 2021-12-09 2021-12-13                              Echelon Insights
## 3137 2021-12-09 2021-12-13                              Echelon Insights
## 3138 2021-12-09 2021-12-13                              Echelon Insights
## 3139 2021-12-09 2021-12-13                                        YouGov
## 3140 2021-12-09 2021-12-13                                        YouGov
## 3141 2021-12-09 2021-12-13                                        YouGov
## 3142 2021-12-09 2021-12-13                                        YouGov
## 3143 2021-12-12 2021-12-14                                        YouGov
## 3144 2021-12-12 2021-12-14                                        YouGov
## 3145 2021-12-12 2021-12-14                                        YouGov
## 3146 2021-12-12 2021-12-14                                        YouGov
## 3147 2021-12-11 2021-12-14                                      Fox News
## 3148 2021-12-11 2021-12-14                                      Fox News
## 3149 2021-12-11 2021-12-14                                      Fox News
## 3150 2021-12-11 2021-12-14                                      Fox News
## 3151 2021-12-17 2021-12-17  John Zogby Strategies/EMI Research Solutions
## 3152 2021-12-17 2021-12-17  John Zogby Strategies/EMI Research Solutions
## 3153 2021-12-17 2021-12-17  John Zogby Strategies/EMI Research Solutions
## 3154 2021-12-17 2021-12-17  John Zogby Strategies/EMI Research Solutions
## 3155 2021-12-13 2021-12-17                                         Ipsos
## 3156 2021-12-13 2021-12-17                                         Ipsos
## 3157 2021-12-13 2021-12-17                                         Ipsos
## 3158 2021-12-13 2021-12-17                                         Ipsos
## 3159 2021-12-18 2021-12-18                  Redfield & Wilton Strategies
## 3160 2021-12-18 2021-12-18                  Redfield & Wilton Strategies
## 3161 2021-12-18 2021-12-18                  Redfield & Wilton Strategies
## 3162 2021-12-18 2021-12-18                  Redfield & Wilton Strategies
## 3163 2021-12-13 2021-12-19                               Morning Consult
## 3164 2021-12-17 2021-12-20                       American Research Group
## 3165 2021-12-17 2021-12-20                       American Research Group
## 3166 2021-12-17 2021-12-20                       American Research Group
## 3167 2021-12-17 2021-12-20                       American Research Group
## 3168 2021-12-18 2021-12-20                               Morning Consult
## 3169 2021-12-18 2021-12-20                               Morning Consult
## 3170 2021-12-18 2021-12-20                               Morning Consult
## 3171 2021-12-18 2021-12-20                               Morning Consult
## 3172 2021-12-17 2021-12-20                               Change Research
## 3173 2021-12-19 2021-12-21                                        YouGov
## 3174 2021-12-19 2021-12-21                                        YouGov
## 3175 2021-12-19 2021-12-21                                        YouGov
## 3176 2021-12-19 2021-12-21                                        YouGov
## 3177 2021-12-27 2021-12-30                                       Suffolk
## 3178 2021-12-27 2021-12-30                                       Suffolk
## 3179 2021-12-27 2021-12-30                                       Suffolk
## 3180 2021-12-27 2021-12-30                                       Suffolk
## 3181 2022-01-02 2022-01-04                                        YouGov
## 3182 2022-01-02 2022-01-04                                        YouGov
## 3183 2022-01-02 2022-01-04                                        YouGov
## 3184 2022-01-02 2022-01-04                                        YouGov
## 3185 2022-01-02 2022-01-04                                       Winston
## 3186 2022-01-04 2022-01-06                             Data for Progress
## 3187 2022-01-05 2022-01-08                                      IBD/TIPP
## 3188 2022-01-08 2022-01-09                               Morning Consult
## 3189 2022-01-08 2022-01-09                               Morning Consult
## 3190 2022-01-08 2022-01-09                               Morning Consult
## 3191 2022-01-08 2022-01-09                               Morning Consult
## 3192 2022-01-08 2022-01-09                  Redfield & Wilton Strategies
## 3193 2022-01-08 2022-01-09                  Redfield & Wilton Strategies
## 3194 2022-01-08 2022-01-09                  Redfield & Wilton Strategies
## 3195 2022-01-08 2022-01-09                  Redfield & Wilton Strategies
## 3196 2022-01-07 2022-01-10                                    Quinnipiac
## 3197 2022-01-07 2022-01-10                                    Quinnipiac
## 3198 2022-01-07 2022-01-10                                    Quinnipiac
## 3199 2022-01-07 2022-01-10                                    Quinnipiac
## 3200 2022-01-06 2022-01-10 Global Strategy Group/GBAO/Navigator Research
## 3201 2022-01-06 2022-01-10 Global Strategy Group/GBAO/Navigator Research
## 3202 2022-01-06 2022-01-10 Global Strategy Group/GBAO/Navigator Research
## 3203 2022-01-06 2022-01-10 Global Strategy Group/GBAO/Navigator Research
## 3204 2022-01-10 2022-01-10                              Decision Desk HQ
## 3205 2022-01-06 2022-01-10                              U. South Florida
## 3206 2022-01-08 2022-01-11                                        YouGov
## 3207 2022-01-08 2022-01-11                                        YouGov
## 3208 2022-01-08 2022-01-11                                        YouGov
## 3209 2022-01-08 2022-01-11                                        YouGov
## 3210 2022-01-15 2022-01-18                                        YouGov
## 3211 2022-01-15 2022-01-18                                        YouGov
## 3212 2022-01-15 2022-01-18                                        YouGov
## 3213 2022-01-15 2022-01-18                                        YouGov
## 3214 2022-01-13 2022-01-18                               Morning Consult
## 3215 2022-01-14 2022-01-18                                           NBC
## 3216 2022-01-13 2022-01-18                                       AP-NORC
## 3217 2022-01-16 2022-01-19                                      Fox News
## 3218 2022-01-16 2022-01-19                                      Fox News
## 3219 2022-01-16 2022-01-19                                      Fox News
## 3220 2022-01-16 2022-01-19                                      Fox News
## 3221 2022-01-17 2022-01-20                       American Research Group
## 3222 2022-01-17 2022-01-20                       American Research Group
## 3223 2022-01-17 2022-01-20                       American Research Group
## 3224 2022-01-17 2022-01-20                       American Research Group
## 3225 2022-01-19 2022-01-20                                   Harris Poll
## 3226 2022-01-19 2022-01-20                                   Harris Poll
## 3227 2022-01-19 2022-01-20                                   Harris Poll
## 3228 2022-01-19 2022-01-20                                   Harris Poll
## 3229 2022-01-22 2022-01-23                               Morning Consult
## 3230 2022-01-22 2022-01-23                               Morning Consult
## 3231 2022-01-22 2022-01-23                               Morning Consult
## 3232 2022-01-22 2022-01-23                               Morning Consult
## 3233 2022-01-21 2022-01-23                              Echelon Insights
## 3234 2022-01-21 2022-01-23                              Echelon Insights
## 3235 2022-01-21 2022-01-23                              Echelon Insights
## 3236 2022-01-21 2022-01-23                              Echelon Insights
## 3237 2022-01-20 2022-01-24 Global Strategy Group/GBAO/Navigator Research
## 3238 2022-01-20 2022-01-24 Global Strategy Group/GBAO/Navigator Research
## 3239 2022-01-20 2022-01-24 Global Strategy Group/GBAO/Navigator Research
## 3240 2022-01-20 2022-01-24 Global Strategy Group/GBAO/Navigator Research
## 3241 2022-01-22 2022-01-25                                        YouGov
## 3242 2022-01-22 2022-01-25                                        YouGov
## 3243 2022-01-22 2022-01-25                                        YouGov
## 3244 2022-01-22 2022-01-25                                        YouGov
## 3245 2022-01-28 2022-01-29                                         Ipsos
## 3246 2022-01-29 2022-02-01                                        YouGov
## 3247 2022-01-29 2022-02-01                                        YouGov
## 3248 2022-01-29 2022-02-01                                        YouGov
## 3249 2022-01-29 2022-02-01                                        YouGov
## 3250 2022-01-20 2022-01-24                                        YouGov
## 3251 2022-01-20 2022-01-24                                        YouGov
## 3252 2022-01-20 2022-01-24                                        YouGov
## 3253 2022-01-20 2022-01-24                                        YouGov
##                                                                                                         Disapprove
## 1                                                                                                        Economist
## 2                                                                                                        Economist
## 3                                                                                                        Economist
## 4                                                                                                        Economist
## 5                                                                                                                 
## 6                                                                                                                 
## 7                                                                                                                 
## 8                                                                                                                 
## 9                                                                                                         Politico
## 10                                                                                                        Politico
## 11                                                                                                        Politico
## 12                                                                                                        Politico
## 13                                                                                                       Economist
## 14                                                                                                       Economist
## 15                                                                                                       Economist
## 16                                                                                                       Economist
## 17                                                                                                       Economist
## 18                                                                                                       Economist
## 19                                                                                                       Economist
## 20                                                                                                       Economist
## 21                                                                                                       Economist
## 22                                                                                                       Economist
## 23                                                                                                       Economist
## 24                                                                                                       Economist
## 25                                                                                                                
## 26                                                                                                                
## 27                                                                                                                
## 28                                                                                                                
## 29                                                                                                         Harvard
## 30                                                                                                         Harvard
## 31                                                                                                         Harvard
## 32                                                                                                         Harvard
## 33                                                                                                 Huffington Post
## 34                                                                                                 Huffington Post
## 35                                                                                                 Huffington Post
## 36                                                                                                 Huffington Post
## 37                                                                                                                
## 38                                                                                                                
## 39                                                                                                                
## 40                                                                                                                
## 41                                                                                                       Economist
## 42                                                                                                       Economist
## 43                                                                                                       Economist
## 44                                                                                                       Economist
## 45                                                                                                         Reuters
## 46                                                                                                         Reuters
## 47                                                                                                         Reuters
## 48                                                                                                         Reuters
## 49                                                                                                                
## 50                                                                                                                
## 51                                                                                                                
## 52                                                                                                                
## 53                                                                                                             CNN
## 54                                                                                                             CNN
## 55                                                                                                             CNN
## 56                                                                                                             CNN
## 57                                                                                                  New York Times
## 58                                                                                                  New York Times
## 59                                                                                                  New York Times
## 60                                                                                                  New York Times
## 61                                                                                                                
## 62                                                                                                                
## 63                                                                                                                
## 64                                                                                                                
## 65                                                                                                                
## 66                                                                                                                
## 67                                                                                                                
## 68                                                                                                                
## 69                                                                                                                
## 70                                                                                                                
## 71                                                                                                                
## 72                                                                                                                
## 73                                                                                                         Hill.TV
## 74                                                                                                         Hill.TV
## 75                                                                                                         Hill.TV
## 76                                                                                                         Hill.TV
## 77                                                                                                       Economist
## 78                                                                                                       Economist
## 79                                                                                                       Economist
## 80                                                                                                       Economist
## 81                                                                                                         Reuters
## 82                                                                                                            CNBC
## 83                                                                                                      Yahoo News
## 84                                                                                                      Yahoo News
## 85                                                                                                      Yahoo News
## 86                                                                                                      Yahoo News
## 87                                                                                                 Huffington Post
## 88                                                                                                 Huffington Post
## 89                                                                                                 Huffington Post
## 90                                                                                                 Huffington Post
## 91                                                                                                        ABC News
## 92                                                                                                        ABC News
## 93                                                                                                        ABC News
## 94                                                                                                        ABC News
## 95                                                                                                                
## 96                                                                                                                
## 97                                                                                                                
## 98                                                                                                                
## 99                                                                                                                
## 100                                                                                                               
## 101                                                                                                               
## 102                                                                                                               
## 103                                                                                                               
## 104                                                                                                               
## 105                                                                                                               
## 106                                                                                                               
## 107                                                                                                               
## 108                                                                                               NPR,PBS NewsHour
## 109                                                                                               NPR,PBS NewsHour
## 110                                                                                               NPR,PBS NewsHour
## 111                                                                                               NPR,PBS NewsHour
## 112                                                                                               NPR,PBS NewsHour
## 113                                                                                               Protect Our Care
## 114                                                                                                Huffington Post
## 115                                                                                                Huffington Post
## 116                                                                                                Huffington Post
## 117                                                                                                Huffington Post
## 118                                                                                                               
## 119                                                                                                               
## 120                                                                                                               
## 121                                                                                                               
## 122                                                                                                       Politico
## 123                                                                                                       Politico
## 124                                                                                                       Politico
## 125                                                                                                       Politico
## 126                                                                                                               
## 127                                                                                                               
## 128                                                                                                               
## 129                                                                                                               
## 130                                                                                                      Economist
## 131                                                                                                      Economist
## 132                                                                                                      Economist
## 133                                                                                                      Economist
## 134                                                                                                        Reuters
## 135                                                                                                        Reuters
## 136                                                                                                        Reuters
## 137                                                                                                        Reuters
## 138                                                                                                               
## 139                                                                                                               
## 140                                                                                                               
## 141                                                                                                               
## 142                                                                                                               
## 143                                                                                                               
## 144                                                                                                               
## 145                                                                                                               
## 146                                                                                                               
## 147                                                                                                        Nexstar
## 148                                                                                                        Nexstar
## 149                                                                                                        Nexstar
## 150                                                                                                        Nexstar
## 151                                                                                                       ABC News
## 152                                                                                                       ABC News
## 153                                                                                                       ABC News
## 154                                                                                                       ABC News
## 155                                                                                                               
## 156                                                                                                               
## 157                                                                                                               
## 158                                                                                                               
## 159                                                                                                               
## 160                                                                                                               
## 161                                                                                                               
## 162                                                                                                               
## 163                                                                                                               
## 164                                                                                                               
## 165                                                                                                               
## 166                                                                                                               
## 167                                                                                                               
## 168                                                                                                               
## 169                                                                                                               
## 170                                                                                                               
## 171                                                                                                               
## 172                                                                                                               
## 173                                                                                                               
## 174                                                                                                               
## 175                                                                                                               
## 176                                                                                                               
## 177                                                                                                               
## 178                                                                                                               
## 179                                                                                                       Politico
## 180                                                                                                       Politico
## 181                                                                                                       Politico
## 182                                                                                                       Politico
## 183                                                                                                Huffington Post
## 184                                                                                                Huffington Post
## 185                                                                                                Huffington Post
## 186                                                                                                Huffington Post
## 187                                                                                                               
## 188                                                                                                               
## 189                                                                                                               
## 190                                                                                                               
## 191                                                                                                               
## 192                                                                                                               
## 193                                                                                                               
## 194                                                                                                               
## 195                                                                                                       CBS News
## 196                                                                                                       CBS News
## 197                                                                                                       CBS News
## 198                                                                                                       CBS News
## 199                                                                                                        Hill.TV
## 200                                                                                                        Hill.TV
## 201                                                                                                        Hill.TV
## 202                                                                                                        Hill.TV
## 203                                                                                                               
## 204                                                                                                        Reuters
## 205                                                                                                        Reuters
## 206                                                                                                        Reuters
## 207                                                                                                        Reuters
## 208                                                                                                               
## 209                                                                                                               
## 210                                                                                                               
## 211                                                                                                               
## 212                                                                                                               
## 213                                                                                                               
## 214                                                                                                               
## 215                                                                                                               
## 216                                                                                                               
## 217                                                                                                               
## 218                                                                                                               
## 219                                                                                                               
## 220                                                                                                               
## 221                                                                                                      Economist
## 222                                                                                                      Economist
## 223                                                                                                      Economist
## 224                                                                                                      Economist
## 225                                                                                                               
## 226                                                                                                               
## 227                                                                                                               
## 228                                                                                                               
## 229                                                                                                               
## 230                                                                                                               
## 231                                                                                                               
## 232                                                                                                               
## 233                                                                                                               
## 234                                                                                                               
## 235                                                                                                               
## 236                                                                                                               
## 237                                                                                                               
## 238                                                                                                               
## 239                                                                                                               
## 240                                                                                                               
## 241                                                                                                               
## 242                                                                                                               
## 243                                                                                                               
## 244                                                                                                               
## 245                                                                                                               
## 246                                                                                                               
## 247                                                                                                               
## 248                                                                                                               
## 249                                                                                                               
## 250                                                                                                        Harvard
## 251                                                                                                        Harvard
## 252                                                                                                        Harvard
## 253                                                                                                        Harvard
## 254                                                                                                        Harvard
## 255                                                                                                        Harvard
## 256                                                                                                        Harvard
## 257                                                                                                        Harvard
## 258                                                                                                               
## 259                                                                                                               
## 260                                                                                                               
## 261                                                                                                               
## 262                                                                                                               
## 263                                                                                                     Yahoo News
## 264                                                                                                     Yahoo News
## 265                                                                                                     Yahoo News
## 266                                                                                                     Yahoo News
## 267                                                                                                               
## 268                                                                                                               
## 269                                                                                                               
## 270                                                                                                               
## 271                                                                                                        Hill.TV
## 272                                                                                                        Hill.TV
## 273                                                                                                        Hill.TV
## 274                                                                                                        Hill.TV
## 275                                                                                                               
## 276                                                                                                               
## 277                                                                                                               
## 278                                                                                                               
## 279                                                                                                               
## 280                                                                                                               
## 281                                                                                               Rural Organizing
## 282                                                                                               Rural Organizing
## 283                                                                                               Rural Organizing
## 284                                                                                               Rural Organizing
## 285                                                                                                               
## 286                                                                                                               
## 287                                                                                                               
## 288                                                                                                               
## 289                                                                                                               
## 290                                                                                                               
## 291                                                                                                               
## 292                                                                                                       Politico
## 293                                                                                                       Politico
## 294                                                                                                       Politico
## 295                                                                                                       Politico
## 296                                                                                                               
## 297                                                                                                               
## 298                                                                                                               
## 299                                                                                                               
## 300                                                                                                               
## 301                                                                                                               
## 302                                                                                                               
## 303                                                                                                               
## 304                                                                                                 More in Common
## 305                                                                                                 More in Common
## 306                                                                                                 More in Common
## 307                                                                                                 More in Common
## 308                                                                                  American Enterprise Institute
## 309                                                                                               Grinnell College
## 310                                                                                               Grinnell College
## 311                                                                                               Grinnell College
## 312                                                                                               Grinnell College
## 313                                                                                                      Daily Kos
## 314                                                                                                      Daily Kos
## 315                                                                                                      Daily Kos
## 316                                                                                                      Daily Kos
## 317                                                                                                               
## 318                                                                                                               
## 319                                                                                                               
## 320                                                                                                               
## 321                                                                                                Huffington Post
## 322                                                                                                Huffington Post
## 323                                                                                                Huffington Post
## 324                                                                                                Huffington Post
## 325                                                                                                      Economist
## 326                                                                                                      Economist
## 327                                                                                                      Economist
## 328                                                                                                      Economist
## 329                                                                                                        Reuters
## 330                                                                                                               
## 331                                                                                                               
## 332                                                                                                               
## 333                                                                                                               
## 334                                                                                                               
## 335                                                                                                               
## 336                                                                                                               
## 337                                                                                                               
## 338                                                                                                               
## 339                                                                                                               
## 340                                                                                                               
## 341                                                                                                               
## 342                                                                                                               
## 343                                                                                                               
## 344                                                                                                       CBS News
## 345                                                                                                       CBS News
## 346                                                                                                       CBS News
## 347                                                                                                       CBS News
## 348                                                                                                               
## 349                                                                                                               
## 350                                                                                                               
## 351                                                                                                               
## 352                                                                                                       ABC News
## 353                                                                                                       ABC News
## 354                                                                                                       ABC News
## 355                                                                                                       ABC News
## 356                                                                                                               
## 357                                                                                                               
## 358                                                                                                               
## 359                                                                                                               
## 360                                                                                                               
## 361                                                                                                           CNBC
## 362                                                                                                        Hill.TV
## 363                                                                                                        Hill.TV
## 364                                                                                                        Hill.TV
## 365                                                                                                        Hill.TV
## 366                                                                                                               
## 367                                                                                                Huffington Post
## 368                                                                                                Huffington Post
## 369                                                                                                Huffington Post
## 370                                                                                                Huffington Post
## 371                                                      Center for American Progress Action Fund,Protect Our Care
## 372                                                      Center for American Progress Action Fund,Protect Our Care
## 373                                                      Center for American Progress Action Fund,Protect Our Care
## 374                                                      Center for American Progress Action Fund,Protect Our Care
## 375                                                                                                               
## 376                                                                                                               
## 377                                                                                                               
## 378                                                                                                               
## 379                                                                                                               
## 380                                                                                                               
## 381                                                                                                               
## 382                                                                                                               
## 383                                                                                                               
## 384                                                                                                               
## 385                                                                                                               
## 386                                                                                                               
## 387                                                                                                               
## 388                                                                                                               
## 389                                                                                                               
## 390                                                                                                               
## 391                                                                                                               
## 392                                                                                                            CNN
## 393                                                                                                            CNN
## 394                                                                                                            CNN
## 395                                                                                                            CNN
## 396                                                                                                               
## 397                                                                                                               
## 398                                                                                                               
## 399                                                                                                               
## 400                                                                                                               
## 401                                                                                                               
## 402                                                                                                               
## 403                                                                                                               
## 404                                                                                                               
## 405                                                                                                               
## 406                                                                                                               
## 407                                                                                                               
## 408                                                                                                      Economist
## 409                                                                                                      Economist
## 410                                                                                                      Economist
## 411                                                                                                      Economist
## 412                                                                                                        Reuters
## 413                                                                                                               
## 414                                                                                                               
## 415                                                                                                               
## 416                                                                                                               
## 417                                                                                                     Yahoo News
## 418                                                                                                     Yahoo News
## 419                                                                                                     Yahoo News
## 420                                                                                                     Yahoo News
## 421                                                                                                               
## 422                                                                                                               
## 423                                                                                                               
## 424                                                                                                               
## 425                                                                                                               
## 426                                                                                                               
## 427                                                                                                               
## 428                                                                                                               
## 429                                                                                                               
## 430                                                                                                               
## 431                                                                                                               
## 432                                                                                                               
## 433                                                                                                       CBS News
## 434                                                                                                       CBS News
## 435                                                                                                       CBS News
## 436                                                                                                       CBS News
## 437                                                                                                       ABC News
## 438                                                                                                       ABC News
## 439                                                                                                       ABC News
## 440                                                                                                       ABC News
## 441                                                                                                               
## 442                                                                                                     314 Action
## 443                                                                                                               
## 444                                                                                                               
## 445                                                                                                               
## 446                                                                                                               
## 447                                                                                                               
## 448                                                                                                               
## 449                                                                                                               
## 450                                                                                                               
## 451                                                                                                 New York Times
## 452                                                                                                 New York Times
## 453                                                                                                 New York Times
## 454                                                                                                 New York Times
## 455                                                                                                               
## 456                                                                                                               
## 457                                                                                                               
## 458                                                                                                               
## 459                                                                                                       Politico
## 460                                                                                                       Politico
## 461                                                                                                       Politico
## 462                                                                                                       Politico
## 463                                                                                                Huffington Post
## 464                                                                                                Huffington Post
## 465                                                                                                Huffington Post
## 466                                                                                                Huffington Post
## 467                                                                                                               
## 468                                                                                                               
## 469                                                                                                               
## 470                                                                                                               
## 471                                                                                                               
## 472                                                                                                               
## 473                                                                                                               
## 474                                                                                                               
## 475                                                                                                        Hill.TV
## 476                                                                                                        Hill.TV
## 477                                                                                                        Hill.TV
## 478                                                                                                        Hill.TV
## 479                                                                                                               
## 480                                                                                                               
## 481                                                                                                               
## 482                                                                                                               
## 483                                                                                                               
## 484                                                      Center for American Progress Action Fund,Protect Our Care
## 485                                                                                                      Daily Kos
## 486                                                                                                      Daily Kos
## 487                                                                                                      Daily Kos
## 488                                                                                                      Daily Kos
## 489                                                                                                      Economist
## 490                                                                                                      Economist
## 491                                                                                                      Economist
## 492                                                                                                      Economist
## 493                                                                                                        Reuters
## 494                                                                                                               
## 495                                                                                                               
## 496                                                                                                               
## 497                                                                                                               
## 498                                                                                                               
## 499                                                                                                               
## 500                                                                                                               
## 501                                                                                                               
## 502                                                                                                               
## 503                                                                                                               
## 504                                                                                                               
## 505                                                                                                               
## 506                                                                                                               
## 507                                                                   Groundwork Collaborative,Roosevelt Institute
## 508                                                                                                               
## 509                                                                                                               
## 510                                                                                                               
## 511                                                                                                               
## 512                                                                                                        Harvard
## 513                                                                                                        Harvard
## 514                                                                                                        Harvard
## 515                                                                                                        Harvard
## 516                                                                                                       ABC News
## 517                                                                                                       ABC News
## 518                                                                                                       ABC News
## 519                                                                                                       ABC News
## 520                                                                                                               
## 521                                                                                                               
## 522                                                                                                               
## 523                                                                                                               
## 524                                                                                                               
## 525                                                                                                           CNBC
## 526                                                                                                               
## 527                                                                                                               
## 528                                                                                                               
## 529                                                                                                               
## 530                                                                                                               
## 531                                                                                                               
## 532                                                                                                               
## 533                                                                                                               
## 534                                                                                                               
## 535                                                                                                               
## 536                                                                                                               
## 537                                                                                                               
## 538                                                                                                Huffington Post
## 539                                                                                                Huffington Post
## 540                                                                                                Huffington Post
## 541                                                                                                Huffington Post
## 542                                                                                                     Yahoo News
## 543                                                                                                     Yahoo News
## 544                                                                                                     Yahoo News
## 545                                                                                                     Yahoo News
## 546                                                                                                       Politico
## 547                                                                                                       Politico
## 548                                                                                                       Politico
## 549                                                                                                       Politico
## 550                                                                                                               
## 551                                                                                                               
## 552                                                                                                               
## 553                                                                                                               
## 554                                                                                                               
## 555                                                                                                               
## 556                                                                                                               
## 557                                                                                                               
## 558                                                                                                               
## 559                                                                                                               
## 560                                                                                                               
## 561                                                                                                               
## 562                                                                                                               
## 563                                                                                                               
## 564                                                                                                               
## 565                                                                                                               
## 566                                                                                                        Hill.TV
## 567                                                                                                        Hill.TV
## 568                                                                                                        Hill.TV
## 569                                                                                                        Hill.TV
## 570                                                                                                               
## 571                                                                                                        Reuters
## 572                                                                                                               
## 573                                                                                                               
## 574                                                                                                               
## 575                                                                                                               
## 576                                                                                                               
## 577                                                                                                      Economist
## 578                                                                                                      Economist
## 579                                                                                                      Economist
## 580                                                                                                      Economist
## 581                                                                                                               
## 582                                                                                                               
## 583                                                                                                               
## 584                                                                                                               
## 585                                                                                                               
## 586                                                                                                               
## 587                                                                                                               
## 588                                                                                                               
## 589                                                                                                               
## 590                                                                                                               
## 591                                                                                                               
## 592                                                                                                               
## 593                                                                                                       CBS News
## 594                                                                                                       CBS News
## 595                                                                                                       CBS News
## 596                                                                                                       CBS News
## 597                                                                                                               
## 598                                                                                                               
## 599                                                                                                               
## 600                                                                                                               
## 601                                                                                                               
## 602                                                                                                               
## 603                                                                                                               
## 604                                                                                                               
## 605                                                                                                               
## 606                                                                                                               
## 607                                                                                                               
## 608                                                                                                               
## 609                                                                                                      USA Today
## 610                                                                                                      USA Today
## 611                                                                                                      USA Today
## 612                                                                                                      USA Today
## 613                                                                                   Northeastern,Harvard,Rutgers
## 614                                                                                   Northeastern,Harvard,Rutgers
## 615                                                                                   Northeastern,Harvard,Rutgers
## 616                                                                                   Northeastern,Harvard,Rutgers
## 617                                                                                               NPR,PBS NewsHour
## 618                                                                                               NPR,PBS NewsHour
## 619                                                                                               NPR,PBS NewsHour
## 620                                                                                               NPR,PBS NewsHour
## 621                                                                                               NPR,PBS NewsHour
## 622                                                                                                               
## 623                                                                                                               
## 624                                                                                                               
## 625                                                                                                               
## 626                                                                                                               
## 627                                                                                                               
## 628                                                                                                               
## 629                                                                                                               
## 630                                                                                                       Politico
## 631                                                                                                       Politico
## 632                                                                                                       Politico
## 633                                                                                                       Politico
## 634                                                                                                Huffington Post
## 635                                                                                                Huffington Post
## 636                                                                                                Huffington Post
## 637                                                                                                Huffington Post
## 638                                                                                                               
## 639                                                                                                               
## 640                                                                                                               
## 641                                                                                                               
## 642                                                                                                               
## 643                                                                                                               
## 644                                                                                                               
## 645                                                                                                               
## 646                                                                                                               
## 647                                                                                                               
## 648                                                                                                               
## 649                                                                                                               
## 650                                                                                                               
## 651                                                                                                               
## 652                                                                                                               
## 653                                                                                                               
## 654                                                                                                               
## 655                                                                                                               
## 656                                                                                                               
## 657                                                                                                               
## 658                                                                                                      Economist
## 659                                                                                                      Economist
## 660                                                                                                      Economist
## 661                                                                                                      Economist
## 662                                                                                                               
## 663                                                                                                               
## 664                                                                                                               
## 665                                                                                                               
## 666                                                                                                               
## 667                                                                                                               
## 668                                                                                                               
## 669                                                                                                               
## 670                                                                                                               
## 671                                                                                                               
## 672                                                                                                               
## 673                                                                                                               
## 674                                                                                               Rural Organizing
## 675                                                                                               Rural Organizing
## 676                                                                                               Rural Organizing
## 677                                                                                               Rural Organizing
## 678                                                                                                               
## 679                                                                                                        Reuters
## 680                                                                                                               
## 681                                                                                                               
## 682                                                                                                               
## 683                                                                                                               
## 684                                                                                                       ABC News
## 685                                                                                                       ABC News
## 686                                                                                                       ABC News
## 687                                                                                                       ABC News
## 688                                                                                                               
## 689                                                                                                               
## 690                                                                                                               
## 691                                                                                                               
## 692                                                                                                               
## 693                                                                                                               
## 694                                                                                                               
## 695                                                                                                               
## 696                                                                                                               
## 697                                                                                                               
## 698                                                                                                               
## 699                                                                                                               
## 700                                                                                                           CNBC
## 701                                                                                                               
## 702                                                                                                               
## 703                                                                                                               
## 704                                                                                                               
## 705                                                                                                Huffington Post
## 706                                                                                                Huffington Post
## 707                                                                                                Huffington Post
## 708                                                                                                Huffington Post
## 709                                                                                                       Politico
## 710                                                                                                       Politico
## 711                                                                                                       Politico
## 712                                                                                                       Politico
## 713                                                                                            The Washington Post
## 714                                                                                            The Washington Post
## 715                                                                                            The Washington Post
## 716                                                                                            The Washington Post
## 717                                                                                                               
## 718                                                                                                               
## 719                                                                                                               
## 720                                                                                                               
## 721                                                                                                               
## 722                                                                                                               
## 723                                                                                                               
## 724                                                                                                               
## 725                                                                                                               
## 726                                                                                                               
## 727                                                                                                               
## 728                                                                                                               
## 729                                                                                                               
## 730                                                                                                               
## 731                                                                                                               
## 732                                                                                                               
## 733                                                                                                               
## 734                                                                                                               
## 735                                                                                                               
## 736                                                                                                      Daily Kos
## 737                                                                                                      Daily Kos
## 738                                                                                                      Daily Kos
## 739                                                                                                      Daily Kos
## 740                                                                                                      Economist
## 741                                                                                                      Economist
## 742                                                                                                      Economist
## 743                                                                                                      Economist
## 744                                                                                                        Reuters
## 745                                                                                                     Yahoo News
## 746                                                                                                     Yahoo News
## 747                                                                                                     Yahoo News
## 748                                                                                                     Yahoo News
## 749                                                                                                               
## 750                                                                                                               
## 751                                                                                                               
## 752                                                                                                               
## 753                                                                                                               
## 754                                                                                                               
## 755                                                                                                               
## 756                                                                                                               
## 757                                                                                                               
## 758                                                                                                               
## 759                                                                                                               
## 760                                                                                                        Hill.TV
## 761                                                                                                               
## 762                                                                                                               
## 763                                                                                                               
## 764                                                                                                               
## 765                                                                                                       ABC News
## 766                                                                                                       ABC News
## 767                                                                                                       ABC News
## 768                                                                                                       ABC News
## 769                                                                                                               
## 770                                                                                                               
## 771                                                                                                               
## 772                                                                                                               
## 773                                                                                                               
## 774                                                                                                               
## 775                                                                                                               
## 776                                                                                                               
## 777                                                                                                 Accountable.US
## 778                                                                                                               
## 779                                                                                                               
## 780                                                                                                               
## 781                                                                                                               
## 782                                                                                                               
## 783                                                                                                            CNN
## 784                                                                                                            CNN
## 785                                                                                                            CNN
## 786                                                                                                            CNN
## 787                                                                                                               
## 788                                                                                                               
## 789                                                                                                               
## 790                                                                                                               
## 791                                                                                                       Politico
## 792                                                                                                       Politico
## 793                                                                                                       Politico
## 794                                                                                                       Politico
## 795                                                                                                Huffington Post
## 796                                                                                                Huffington Post
## 797                                                                                                Huffington Post
## 798                                                                                                Huffington Post
## 799                                                                                                               
## 800                                                                                                               
## 801                                                                                                               
## 802                                                                                                               
## 803                                                                                                               
## 804                                                                                                               
## 805                                                                                                               
## 806                                                                                                               
## 807                                                                                                               
## 808                                                                                                               
## 809                                                                                                               
## 810                                                                                                               
## 811                                                                                                      Economist
## 812                                                                                                      Economist
## 813                                                                                                      Economist
## 814                                                                                                      Economist
## 815                                                                                                        Reuters
## 816                                                                                                               
## 817                                                                                                               
## 818                                                                                                               
## 819                                                                                                               
## 820                                                                                                               
## 821                                                                                                               
## 822                                                                                                               
## 823                                                                                                               
## 824                                                                                                               
## 825                                                                                                               
## 826                                                                                                               
## 827                                                                                                       CBS News
## 828                                                                                                       CBS News
## 829                                                                                                       CBS News
## 830                                                                                                       CBS News
## 831                                                                                                               
## 832                                                                                                               
## 833                                                                                                               
## 834                                                                                                               
## 835                                                                                                        Hill.TV
## 836                                                                                                        Hill.TV
## 837                                                                                                        Hill.TV
## 838                                                                                                        Hill.TV
## 839                                                                                                        Harvard
## 840                                                                                                        Harvard
## 841                                                                                                        Harvard
## 842                                                                                                        Harvard
## 843                                                                                                               
## 844                                                                                                               
## 845                                                                                                               
## 846                                                                                                               
## 847                                                                                                               
## 848                                                                                                               
## 849                                                                                                               
## 850                                                                                                               
## 851                                                                                                               
## 852                                                                                                               
## 853                                                                                                               
## 854                                                                                                               
## 855                                                                                                               
## 856                                                                                                Huffington Post
## 857                                                                                                Huffington Post
## 858                                                                                                Huffington Post
## 859                                                                                                Huffington Post
## 860                                                                                                               
## 861                                                                                                               
## 862                                                                                                               
## 863                                                                                                               
## 864                                                                                                               
## 865                                                                                                               
## 866                                                                                                               
## 867                                                                                                               
## 868                                                                                                               
## 869                                                                                                               
## 870                                                                                                               
## 871                                                                                                               
## 872                                                                                                               
## 873                                                                                                               
## 874                                                                                                               
## 875                                                                                                               
## 876                                                                                                       Politico
## 877                                                                                                       Politico
## 878                                                                                                       Politico
## 879                                                                                                       Politico
## 880                                                                                                               
## 881                                                                                                               
## 882                                                                                                               
## 883                                                                                                               
## 884                                                                                                      Economist
## 885                                                                                                      Economist
## 886                                                                                                      Economist
## 887                                                                                                      Economist
## 888                                                                                                        Reuters
## 889                                                                                                               
## 890                                                                                                               
## 891                                                                                                               
## 892                                                                                                               
## 893                                                                                                               
## 894                                                                                                               
## 895                                                                                                               
## 896                                                                                                               
## 897                                                                                                               
## 898                                                                                                               
## 899                                                                                                               
## 900                                                                                                               
## 901                                                                                                               
## 902                                                                                                               
## 903                                                                                                               
## 904                                                                                                               
## 905                                                                                                       ABC News
## 906                                                                                                       ABC News
## 907                                                                                                       ABC News
## 908                                                                                                       ABC News
## 909                                                                                                     Yahoo News
## 910                                                                                                     Yahoo News
## 911                                                                                                     Yahoo News
## 912                                                                                                     Yahoo News
## 913                                                                                                               
## 914                                                                                                               
## 915                                                                                                               
## 916                                                                                                               
## 917                                                                                                               
## 918                                                                                                Huffington Post
## 919                                                                                                Huffington Post
## 920                                                                                                Huffington Post
## 921                                                                                                Huffington Post
## 922                                                                                                               
## 923                                                                                                               
## 924                                                                                                               
## 925                                                                                                               
## 926                                                                                                               
## 927                                                                                                               
## 928                                                                                                               
## 929                                                                                                               
## 930                                                                                                               
## 931                                                                                                               
## 932                                                                                                               
## 933                                                                                                               
## 934                                                                                                               
## 935                                                                                                               
## 936                                                                                                               
## 937                                                                                                               
## 938                                                                                                               
## 939                                                                                                               
## 940                                                                                                               
## 941                                                                                                               
## 942                                                                                                       Politico
## 943                                                                                                       Politico
## 944                                                                                                       Politico
## 945                                                                                                       Politico
## 946                                                                                                      Economist
## 947                                                                                                      Economist
## 948                                                                                                      Economist
## 949                                                                                                      Economist
## 950                                                                                                               
## 951                                                                                                               
## 952                                                                                                               
## 953                                                                                                        Reuters
## 954                                                                                                               
## 955                                                                                                               
## 956                                                                                                               
## 957                                                                                                               
## 958                                                                                                               
## 959                                                                                                               
## 960                                                                                                               
## 961                                                                                                               
## 962                                                                                                               
## 963                                                                                                               
## 964                                                                                                               
## 965                                                                                                               
## 966                                                                                                               
## 967                                                                                                               
## 968                                                                                                               
## 969                                                                                                               
## 970                                                                                                     Yahoo News
## 971                                                                                                     Yahoo News
## 972                                                                                                     Yahoo News
## 973                                                                                                     Yahoo News
## 974                                                                                                               
## 975                                                                                                Huffington Post
## 976                                                                                                Huffington Post
## 977                                                                                                Huffington Post
## 978                                                                                                Huffington Post
## 979                                                                                                               
## 980                                                                                                               
## 981                                                                                                               
## 982                                                                                                               
## 983                                                                                                               
## 984                                                                                                               
## 985                                                                                                               
## 986                                                                                                               
## 987                                                                                                               
## 988                                                                                                               
## 989                                                                                                               
## 990                                                                                                               
## 991                                                                                                       Politico
## 992                                                                                                       Politico
## 993                                                                                                       Politico
## 994                                                                                                       Politico
## 995                                                                                                       CBS News
## 996                                                                                                       CBS News
## 997                                                                                                       CBS News
## 998                                                                                                       CBS News
## 999                                                                                                               
## 1000                                                                                                              
## 1001                                                                                                              
## 1002                                                                                                              
## 1003                                                                                                              
## 1004                                                                                                     Economist
## 1005                                                                                                     Economist
## 1006                                                                                                     Economist
## 1007                                                                                                     Economist
## 1008                                                                                                       Reuters
## 1009                                                                                                              
## 1010                                                                                                              
## 1011                                                                                                              
## 1012                                                                                                              
## 1013                                                                                                              
## 1014                                                                                                     Daily Kos
## 1015                                                                                                     Daily Kos
## 1016                                                                                                     Daily Kos
## 1017                                                                                                     Daily Kos
## 1018                                                                                                              
## 1019                                                                                                              
## 1020                                                                                                              
## 1021                                                                                                              
## 1022                                                                                                      ABC News
## 1023                                                                                                      ABC News
## 1024                                                                                                      ABC News
## 1025                                                                                                      ABC News
## 1026                                                                                 American Enterprise Institute
## 1027                                                                                                           CNN
## 1028                                                                                                           CNN
## 1029                                                                                                           CNN
## 1030                                                                                                           CNN
## 1031                                                                                                              
## 1032                                                                                                              
## 1033                                                                                                              
## 1034                                                                                                              
## 1035                                                                                                New York Times
## 1036                                                                                                New York Times
## 1037                                                                                                New York Times
## 1038                                                                                                New York Times
## 1039                                                                                                              
## 1040                                                                                                              
## 1041                                                                                                              
## 1042                                                                                                              
## 1043                                                                                               Huffington Post
## 1044                                                                                               Huffington Post
## 1045                                                                                               Huffington Post
## 1046                                                                                               Huffington Post
## 1047                                                                                                      Politico
## 1048                                                                                                      Politico
## 1049                                                                                                      Politico
## 1050                                                                                                      Politico
## 1051                                                                                                              
## 1052                                                                                                              
## 1053                                                                                                              
## 1054                                                                                                              
## 1055                                                                                                              
## 1056                                                                                                              
## 1057                                                                                                              
## 1058                                                                                                              
## 1059                                                                                                              
## 1060                                                                                                     Economist
## 1061                                                                                                     Economist
## 1062                                                                                                     Economist
## 1063                                                                                                     Economist
## 1064                                                                                                       Reuters
## 1065                                                                                                              
## 1066                                                                                                              
## 1067                                                                                                              
## 1068                                                                                                              
## 1069                                                                                                              
## 1070                                                                                                              
## 1071                                                                                                              
## 1072                                                                                                              
## 1073                                                                                                       Hill.TV
## 1074                                                                                                       Hill.TV
## 1075                                                                                                       Hill.TV
## 1076                                                                                                       Hill.TV
## 1077                                                                                                    Yahoo News
## 1078                                                                                                    Yahoo News
## 1079                                                                                                    Yahoo News
## 1080                                                                                                    Yahoo News
## 1081                                                                                                              
## 1082                                                                                                              
## 1083                                                                                                              
## 1084                                                                                                              
## 1085                                                                                                          CNBC
## 1086                                                                                                              
## 1087                                                                                                              
## 1088                                                                                                              
## 1089                                                                                                              
## 1090                                                                                                      Politico
## 1091                                                                                                      Politico
## 1092                                                                                                      Politico
## 1093                                                                                                      Politico
## 1094                                                                                               Huffington Post
## 1095                                                                                               Huffington Post
## 1096                                                                                               Huffington Post
## 1097                                                                                               Huffington Post
## 1098                                                                                                              
## 1099                                                                                                              
## 1100                                                                                                              
## 1101                                                                                                              
## 1102                                                                                                              
## 1103                                                                                                              
## 1104                                                                                                              
## 1105                                                                                                              
## 1106                                                                                                              
## 1107                                                                                                              
## 1108                                                                                                              
## 1109                                                                                                              
## 1110                                                                                                              
## 1111                                                                                                              
## 1112                                                                                                       Reuters
## 1113                                                                                                              
## 1114                                                                                                              
## 1115                                                                                                              
## 1116                                                                                                              
## 1117                                                                                                              
## 1118                                                                                                     Economist
## 1119                                                                                                     Economist
## 1120                                                                                                     Economist
## 1121                                                                                                     Economist
## 1122                                                                                                              
## 1123                                                                                                              
## 1124                                                                                                              
## 1125                                                                                                              
## 1126                                                                                                       Harvard
## 1127                                                                                                       Harvard
## 1128                                                                                                       Harvard
## 1129                                                                                                       Harvard
## 1130                                                                                                      ABC News
## 1131                                                                                                      ABC News
## 1132                                                                                                      ABC News
## 1133                                                                                                      ABC News
## 1134                                                                                                              
## 1135                                                                                                              
## 1136                                                                                                              
## 1137                                                                                                              
## 1138                                                                                                              
## 1139                                                                                                              
## 1140                                                                                                              
## 1141                                                                                                              
## 1142                                                                                                      Politico
## 1143                                                                                                      Politico
## 1144                                                                                                      Politico
## 1145                                                                                                      Politico
## 1146                                                                                                              
## 1147                                                                                                              
## 1148                                                                                                              
## 1149                                                                                                              
## 1150                                                                                                              
## 1151                                                                                                              
## 1152                                                                                                              
## 1153                                                                                                              
## 1154                                                                                               Huffington Post
## 1155                                                                                               Huffington Post
## 1156                                                                                               Huffington Post
## 1157                                                                                               Huffington Post
## 1158                                                                                                     Economist
## 1159                                                                                                     Economist
## 1160                                                                                                     Economist
## 1161                                                                                                     Economist
## 1162                                                                                                       Hill.TV
## 1163                                                                                                       Hill.TV
## 1164                                                                                                       Hill.TV
## 1165                                                                                                       Hill.TV
## 1166                                                                                                       Reuters
## 1167                                                                                                              
## 1168                                                                                                              
## 1169                                                                                                              
## 1170                                                                                                              
## 1171                                                                                                              
## 1172                                                                                                              
## 1173                                                                                                              
## 1174                                                                                                    Yahoo News
## 1175                                                                                                    Yahoo News
## 1176                                                                                                    Yahoo News
## 1177                                                                                                    Yahoo News
## 1178                                                                                                      CBS News
## 1179                                                                                                      CBS News
## 1180                                                                                                      CBS News
## 1181                                                                                                      CBS News
## 1182                                                                                                              
## 1183                                                                                                              
## 1184                                                                                                              
## 1185                                                                                                              
## 1186                                                                                              Protect Our Care
## 1187                                                                                                              
## 1188                                                                                                              
## 1189                                                                                                              
## 1190                                                                                                              
## 1191                                                                                                              
## 1192                                                                                                      Politico
## 1193                                                                                                      Politico
## 1194                                                                                                      Politico
## 1195                                                                                                      Politico
## 1196                                                                                               Huffington Post
## 1197                                                                                               Huffington Post
## 1198                                                                                               Huffington Post
## 1199                                                                                               Huffington Post
## 1200                                                                                                         Axios
## 1201                                                                                                         Axios
## 1202                                                                                                         Axios
## 1203                                                                                                         Axios
## 1204                                                                                                              
## 1205                                                                                                              
## 1206                                                                                                              
## 1207                                                                                                              
## 1208                                                                                                              
## 1209                                                                                                              
## 1210                                                                                                              
## 1211                                                                                                              
## 1212                                                                                                              
## 1213                                                                                                     Economist
## 1214                                                                                                     Economist
## 1215                                                                                                     Economist
## 1216                                                                                                     Economist
## 1217                                                                                                       Reuters
## 1218                                                                                                              
## 1219                                                                                                              
## 1220                                                                                                              
## 1221                                                                                                              
## 1222                                                                                                              
## 1223                                                                                                              
## 1224                                                                                                              
## 1225                                                                                                              
## 1226                                                                                                      NBC News
## 1227                                                                                                      NBC News
## 1228                                                                                                      NBC News
## 1229                                                                                                      NBC News
## 1230                                                     Center for American Progress Action Fund,Protect Our Care
## 1231                                                                                               Huffington Post
## 1232                                                                                               Huffington Post
## 1233                                                                                               Huffington Post
## 1234                                                                                               Huffington Post
## 1235                                                                                                     Economist
## 1236                                                                                                     Economist
## 1237                                                                                                     Economist
## 1238                                                                                                     Economist
## 1239                                                                                                       Reuters
## 1240                                                                                                              
## 1241                                                                                                              
## 1242                                                                                                              
## 1243                                                                                                              
## 1244                                                                                                              
## 1245                                                                                                              
## 1246                                                                                                              
## 1247                                                                                                      ABC News
## 1248                                                                                                      ABC News
## 1249                                                                                                      ABC News
## 1250                                                                                                      ABC News
## 1251                                                                                                       Hill.TV
## 1252                                                                                                       Hill.TV
## 1253                                                                                                       Hill.TV
## 1254                                                                                                       Hill.TV
## 1255                                                                                                      NBC News
## 1256                                                                                                      NBC News
## 1257                                                                                                      NBC News
## 1258                                                                                                      NBC News
## 1259                                                                                                New York Times
## 1260                                                                                                New York Times
## 1261                                                                                                New York Times
## 1262                                                                                                New York Times
## 1263                                                                                                              
## 1264                                                                                                              
## 1265                                                                                                              
## 1266                                                                                                              
## 1267                                                                                                              
## 1268                                                                                                          CNBC
## 1269                                                                                                      Politico
## 1270                                                                                                      Politico
## 1271                                                                                                      Politico
## 1272                                                                                                      Politico
## 1273                                                                                               Huffington Post
## 1274                                                                                               Huffington Post
## 1275                                                                                               Huffington Post
## 1276                                                                                               Huffington Post
## 1277                                                                                                              
## 1278                                                                                                              
## 1279                                                                                                              
## 1280                                                                                                              
## 1281                                                                                                              
## 1282                                                                                                              
## 1283                                                                                                              
## 1284                                                                                                              
## 1285                                                                                                    Yahoo News
## 1286                                                                                                    Yahoo News
## 1287                                                                                                    Yahoo News
## 1288                                                                                                    Yahoo News
## 1289                                                                                                     Economist
## 1290                                                                                                     Economist
## 1291                                                                                                     Economist
## 1292                                                                                                     Economist
## 1293                                                                                                       Reuters
## 1294                                                                                                              
## 1295                                                                                                              
## 1296                                                                                                              
## 1297                                                                                                              
## 1298                                                                                                              
## 1299                                                                                                              
## 1300                                                                                                              
## 1301                                                                                                              
## 1302                                                                                                              
## 1303                                                                                                              
## 1304                                                                                                              
## 1305                                                                                                              
## 1306                                                                                                              
## 1307                                                                                                      NBC News
## 1308                                                                                                      NBC News
## 1309                                                                                                      NBC News
## 1310                                                                                                      NBC News
## 1311                                                                                                              
## 1312                                                                                                              
## 1313                                                                                                              
## 1314                                                                                                              
## 1315                                                                                                              
## 1316                                                                                                              
## 1317                                                                                                              
## 1318                                                                                                              
## 1319                                                                                                      Politico
## 1320                                                                                                      Politico
## 1321                                                                                                      Politico
## 1322                                                                                                      Politico
## 1323                                                                                               Huffington Post
## 1324                                                                                               Huffington Post
## 1325                                                                                               Huffington Post
## 1326                                                                                               Huffington Post
## 1327                                                                                                              
## 1328                                                                                                              
## 1329                                                                                                              
## 1330                                                                                                              
## 1331                                                                                                              
## 1332                                                                                                              
## 1333                                                                                                              
## 1334                                                                                                              
## 1335                                                                                                              
## 1336                                                                                                              
## 1337                                                                                                              
## 1338                                                                                                              
## 1339                                                                                                       Reuters
## 1340                                                                                                     Economist
## 1341                                                                                                     Economist
## 1342                                                                                                     Economist
## 1343                                                                                                     Economist
## 1344                                                                                                              
## 1345                                                                                                              
## 1346                                                                                                              
## 1347                                                                                                              
## 1348                                                                                                              
## 1349                                                                                                              
## 1350                                                                                                              
## 1351                                                                                                              
## 1352                                                                                                       Harvard
## 1353                                                                                                       Harvard
## 1354                                                                                                       Harvard
## 1355                                                                                                       Harvard
## 1356                                                                                                      CBS News
## 1357                                                                                                      CBS News
## 1358                                                                                                      CBS News
## 1359                                                                                                      CBS News
## 1360                                                                                                      NBC News
## 1361                                                                                                      NBC News
## 1362                                                                                                      NBC News
## 1363                                                                                                      NBC News
## 1364                                                                                                              
## 1365                                                                                                              
## 1366                                                                                                              
## 1367                                                                                                              
## 1368                                                                                                          CNBC
## 1369                                                                                                       Hill.TV
## 1370                                                                                                       Hill.TV
## 1371                                                                                                       Hill.TV
## 1372                                                                                                       Hill.TV
## 1373                                                                                                      Politico
## 1374                                                                                                      Politico
## 1375                                                                                                      Politico
## 1376                                                                                                      Politico
## 1377                                                                                               Huffington Post
## 1378                                                                                               Huffington Post
## 1379                                                                                               Huffington Post
## 1380                                                                                               Huffington Post
## 1381                                                                                                              
## 1382                                                                                                              
## 1383                                                                                                              
## 1384                                                                                                              
## 1385                                                                                                              
## 1386                                                                                                     Economist
## 1387                                                                                                     Economist
## 1388                                                                                                     Economist
## 1389                                                                                                     Economist
## 1390                                                                                                       Reuters
## 1391                                                                                                       Reuters
## 1392                                                                                                       Reuters
## 1393                                                                                                       Reuters
## 1394                                                                                                              
## 1395                                                                                                              
## 1396                                                                                                              
## 1397                                                                                                              
## 1398                                                                                                              
## 1399                                                                                                              
## 1400                                                                                                              
## 1401                                                                                                    Yahoo News
## 1402                                                                                                    Yahoo News
## 1403                                                                                                    Yahoo News
## 1404                                                                                                    Yahoo News
## 1405                                                                                                      ABC News
## 1406                                                                                                      ABC News
## 1407                                                                                                      ABC News
## 1408                                                                                                      ABC News
## 1409                                                                                                         Axios
## 1410                                                                                                         Axios
## 1411                                                                                                         Axios
## 1412                                                                                                         Axios
## 1413                                                                                                              
## 1414                                                                                                              
## 1415                                                                                                              
## 1416                                                                                                      NBC News
## 1417                                                                                                      NBC News
## 1418                                                                                                      NBC News
## 1419                                                                                                      NBC News
## 1420                                                                                           COVID Collaborative
## 1421                                                                                           COVID Collaborative
## 1422                                                                                           COVID Collaborative
## 1423                                                                                           COVID Collaborative
## 1424                                                                                                              
## 1425                                                                                                              
## 1426                                                                                                              
## 1427                                                                                                              
## 1428                                                                                                      Politico
## 1429                                                                                                      Politico
## 1430                                                                                                      Politico
## 1431                                                                                                      Politico
## 1432                                                                                                              
## 1433                                                                                                              
## 1434                                                                                                              
## 1435                                                                                                              
## 1436                                                                                               Huffington Post
## 1437                                                                                               Huffington Post
## 1438                                                                                               Huffington Post
## 1439                                                                                               Huffington Post
## 1440                                                                                                     Economist
## 1441                                                                                                     Economist
## 1442                                                                                                     Economist
## 1443                                                                                                     Economist
## 1444                                                                                                       Reuters
## 1445                                                                                                              
## 1446                                                                                                              
## 1447                                                                                                              
## 1448                                                                                                              
## 1449                                                                                                              
## 1450                                                                                                              
## 1451                                                                                                              
## 1452                                                                                                              
## 1453                                                                                                      NBC News
## 1454                                                                                                      NBC News
## 1455                                                                                                      NBC News
## 1456                                                                                                      NBC News
## 1457                                                                                                New York Times
## 1458                                                                                                New York Times
## 1459                                                                                                New York Times
## 1460                                                                                                New York Times
## 1461                                                                                                          CNBC
## 1462                                                                                                              
## 1463                                                                                                              
## 1464                                                                                                              
## 1465                                                                                                              
## 1466                                                                                                              
## 1467                                                                                                              
## 1468                                                                                                              
## 1469                                                                                                              
## 1470                                                                                                              
## 1471                                                                                                              
## 1472                                                                                                              
## 1473                                                                                                              
## 1474                                                                                               Huffington Post
## 1475                                                                                               Huffington Post
## 1476                                                                                               Huffington Post
## 1477                                                                                               Huffington Post
## 1478                                                                                                      Politico
## 1479                                                                                                      Politico
## 1480                                                                                                      Politico
## 1481                                                                                                      Politico
## 1482                                                                                                       Hill.TV
## 1483                                                                                                       Hill.TV
## 1484                                                                                                       Hill.TV
## 1485                                                                                                       Hill.TV
## 1486                                                                                                     Economist
## 1487                                                                                                     Economist
## 1488                                                                                                     Economist
## 1489                                                                                                     Economist
## 1490                                                                                                       Reuters
## 1491                                                                                                              
## 1492                                                                                                              
## 1493                                                                                                              
## 1494                                                                                                              
## 1495                                                                                                              
## 1496                                                                                                              
## 1497                                                                                                              
## 1498                                                                                                              
## 1499                                                                                                              
## 1500                                                                                                              
## 1501                                                                                                              
## 1502                                                                                                              
## 1503                                                                                                              
## 1504                                                                                                              
## 1505                                                                                                              
## 1506                                                                                                              
## 1507                                                                                                              
## 1508                                                                                                              
## 1509                                                                                                              
## 1510                                                                                                              
## 1511                                                                                                           CNN
## 1512                                                                                                           CNN
## 1513                                                                                                           CNN
## 1514                                                                                                           CNN
## 1515                                                                                                    Yahoo News
## 1516                                                                                                    Yahoo News
## 1517                                                                                                    Yahoo News
## 1518                                                                                                    Yahoo News
## 1519                                                                                                      NBC News
## 1520                                                                                                      NBC News
## 1521                                                                                                      NBC News
## 1522                                                                                                      NBC News
## 1523                                                                                                      Politico
## 1524                                                                                                      Politico
## 1525                                                                                                      Politico
## 1526                                                                                                      Politico
## 1527                                                                                                              
## 1528                                                                                                              
## 1529                                                                                                              
## 1530                                                                                                              
## 1531                                                                                               Huffington Post
## 1532                                                                                               Huffington Post
## 1533                                                                                               Huffington Post
## 1534                                                                                               Huffington Post
## 1535                                                                                                              
## 1536                                                                                                       Reuters
## 1537                                                                                                     Economist
## 1538                                                                                                     Economist
## 1539                                                                                                     Economist
## 1540                                                                                                     Economist
## 1541                                                                                                              
## 1542                                                                                                              
## 1543                                                                                                              
## 1544                                                                                                              
## 1545                                                                                                              
## 1546                                                                                                              
## 1547                                                                                                              
## 1548                                                                                                              
## 1549                                                                                                              
## 1550                                                                                                              
## 1551                                                                                                              
## 1552                                                                                                              
## 1553                                                                                                      CBS News
## 1554                                                                                                      CBS News
## 1555                                                                                                      CBS News
## 1556                                                                                                      CBS News
## 1557                                                                                               Huffington Post
## 1558                                                                                               Huffington Post
## 1559                                                                                               Huffington Post
## 1560                                                                                               Huffington Post
## 1561                                                                                                      NBC News
## 1562                                                                                                      NBC News
## 1563                                                                                                      NBC News
## 1564                                                                                                      NBC News
## 1565                                                                                                          CNBC
## 1566                                                                                                              
## 1567                                                                                                              
## 1568                                                                                                              
## 1569                                                                                                              
## 1570                                                                                                      Politico
## 1571                                                                                                      Politico
## 1572                                                                                                      Politico
## 1573                                                                                                      Politico
## 1574                                                                                                    Yahoo News
## 1575                                                                                                    Yahoo News
## 1576                                                                                                    Yahoo News
## 1577                                                                                                    Yahoo News
## 1578                                                                                                              
## 1579                                                                                                              
## 1580                                                                                                              
## 1581                                                                                                              
## 1582                                                                                                       Reuters
## 1583                                                                                                     Economist
## 1584                                                                                                     Economist
## 1585                                                                                                     Economist
## 1586                                                                                                     Economist
## 1587                                                                                                              
## 1588                                                                                                              
## 1589                                                                                                              
## 1590                                                                                                              
## 1591                                                                                                    Yahoo News
## 1592                                                                                                    Yahoo News
## 1593                                                                                                    Yahoo News
## 1594                                                                                                    Yahoo News
## 1595                                                                                               Huffington Post
## 1596                                                                                               Huffington Post
## 1597                                                                                               Huffington Post
## 1598                                                                                               Huffington Post
## 1599                                                                                                      ABC News
## 1600                                                                                                      ABC News
## 1601                                                                                                      ABC News
## 1602                                                                                                      ABC News
## 1603                                                                                                              
## 1604                                                                                                      NBC News
## 1605                                                                                                      NBC News
## 1606                                                                                                      NBC News
## 1607                                                                                                      NBC News
## 1608                                                                                              Grinnell College
## 1609                                                                                              Grinnell College
## 1610                                                                                              Grinnell College
## 1611                                                                                              Grinnell College
## 1612                                                                                                      Politico
## 1613                                                                                                      Politico
## 1614                                                                                                      Politico
## 1615                                                                                                      Politico
## 1616                                                                                                         Axios
## 1617                                                                                                         Axios
## 1618                                                                                                         Axios
## 1619                                                                                                         Axios
## 1620                                                                                                              
## 1621                                                                                                              
## 1622                                                                                                              
## 1623                                                                                                              
## 1624                                                                                                              
## 1625                                                                                                              
## 1626                                                                                                              
## 1627                                                                                                              
## 1628                                                                                                              
## 1629                                                                                                              
## 1630                                                                                                              
## 1631                                                                                                              
## 1632                                                                                                       Reuters
## 1633                                                                                                           CNN
## 1634                                                                                                           CNN
## 1635                                                                                                           CNN
## 1636                                                                                                           CNN
## 1637                                                                                                              
## 1638                                                                                                     Economist
## 1639                                                                                                     Economist
## 1640                                                                                                     Economist
## 1641                                                                                                     Economist
## 1642                                                                                                              
## 1643                                                                                                              
## 1644                                                                                                              
## 1645                                                                                                              
## 1646                                                                                                              
## 1647                                                                                                              
## 1648                                                                                                              
## 1649                                                                                                       Harvard
## 1650                                                                                                       Harvard
## 1651                                                                                                       Harvard
## 1652                                                                                                       Harvard
## 1653                                                                                                              
## 1654                                                                                                              
## 1655                                                                                                              
## 1656                                                                                                              
## 1657                                                                                              Politico,Harvard
## 1658                                                                                                      NBC News
## 1659                                                                                                      NBC News
## 1660                                                                                                      NBC News
## 1661                                                                                                      NBC News
## 1662                                                                                                              
## 1663                                                                                                              
## 1664                                                                                                              
## 1665                                                                                                              
## 1666                                                                                                          CNBC
## 1667                                                                                              Protect Our Care
## 1668                                                                                                       Reuters
## 1669                                                                                                       Reuters
## 1670                                                                                                       Reuters
## 1671                                                                                                              
## 1672                                                                                                              
## 1673                                                                                                              
## 1674                                                                                                              
## 1675                                                                                                     Economist
## 1676                                                                                                     Economist
## 1677                                                                                                     Economist
## 1678                                                                                                     Economist
## 1679                                                                                                              
## 1680                                                                                                              
## 1681                                                                                                              
## 1682                                                                                                              
## 1683                                                                                        The Guardian,Vice News
## 1684                                                                                        The Guardian,Vice News
## 1685                                                                                        The Guardian,Vice News
## 1686                                                                                        The Guardian,Vice News
## 1687                                                                                                              
## 1688                                                                                                              
## 1689                                                                                                              
## 1690                                                                                                              
## 1691                                                                                                    Yahoo News
## 1692                                                                                                    Yahoo News
## 1693                                                                                                    Yahoo News
## 1694                                                                                                    Yahoo News
## 1695                                                                                                      ABC News
## 1696                                                                                                      ABC News
## 1697                                                                                                      ABC News
## 1698                                                                                                      ABC News
## 1699                                                                                                      NBC News
## 1700                                                                                                      NBC News
## 1701                                                                                                      NBC News
## 1702                                                                                                      NBC News
## 1703                                                                                                              
## 1704                                                                                                              
## 1705                                                                                                              
## 1706                                                                                                              
## 1707                                                                                                              
## 1708                                                                                                              
## 1709                                                                                                              
## 1710                                                                                                              
## 1711                                                                                                              
## 1712                                                                                                      Politico
## 1713                                                                                                      Politico
## 1714                                                                                                      Politico
## 1715                                                                                                      Politico
## 1716                                                                                               Huffington Post
## 1717                                                                                               Huffington Post
## 1718                                                                                               Huffington Post
## 1719                                                                                               Huffington Post
## 1720                                                                                                              
## 1721                                                                                                              
## 1722                                                                                                              
## 1723                                                                                                              
## 1724                                                                                                       Reuters
## 1725                                                                                                     Economist
## 1726                                                                                                     Economist
## 1727                                                                                                     Economist
## 1728                                                                                                     Economist
## 1729                                                                                                              
## 1730                                                                                                              
## 1731                                                                                                              
## 1732                                                                                                              
## 1733                                                                                                              
## 1734                                                                                                              
## 1735                                                                                                              
## 1736                                                                                                              
## 1737                                                                                                       Reuters
## 1738                                                                                                       Reuters
## 1739                                                                                                       Reuters
## 1740                                                                                                    Yahoo News
## 1741                                                                                                    Yahoo News
## 1742                                                                                                    Yahoo News
## 1743                                                                                                    Yahoo News
## 1744                                                                                                      NBC News
## 1745                                                                                                      NBC News
## 1746                                                                                                      NBC News
## 1747                                                                                                      NBC News
## 1748                                                                                                              
## 1749                                                                                                              
## 1750                                                                                                              
## 1751                                                                                                              
## 1752                                                                                                          CNBC
## 1753                                                                                                              
## 1754                                                                                                              
## 1755                                                                                                              
## 1756                                                                                                              
## 1757                                                                                                      Politico
## 1758                                                                                                      Politico
## 1759                                                                                                      Politico
## 1760                                                                                                      Politico
## 1761                                                                                                              
## 1762                                                                                                              
## 1763                                                                                                              
## 1764                                                                                                              
## 1765                                                                                                              
## 1766                                                                                                              
## 1767                                                                                                              
## 1768                                                                                                              
## 1769                                                                                                       Hill.TV
## 1770                                                                                                       Hill.TV
## 1771                                                                                                       Hill.TV
## 1772                                                                                                       Hill.TV
## 1773                                                                                                              
## 1774                                                                                                              
## 1775                                                                                                              
## 1776                                                                                                              
## 1777                                                                                                       Reuters
## 1778                                                                                                     Economist
## 1779                                                                                                     Economist
## 1780                                                                                                     Economist
## 1781                                                                                                     Economist
## 1782                                                                                                              
## 1783                                                                                                              
## 1784                                                                                                              
## 1785                                                                                                              
## 1786                                                                                                              
## 1787                                                                                                              
## 1788                                                                                                              
## 1789                                                                                                              
## 1790                                                                                                              
## 1791                                                                                                    Yahoo News
## 1792                                                                                                    Yahoo News
## 1793                                                                                                    Yahoo News
## 1794                                                                                                    Yahoo News
## 1795                                                                                                              
## 1796                                                                                                       Reuters
## 1797                                                                                                       Reuters
## 1798                                                                                                       Reuters
## 1799                                                                                                       Reuters
## 1800                                                                                                       Harvard
## 1801                                                                                                       Harvard
## 1802                                                                                                       Harvard
## 1803                                                                                                       Harvard
## 1804                                                                                                              
## 1805                                                                                                      NBC News
## 1806                                                                                                      NBC News
## 1807                                                                                                      NBC News
## 1808                                                                                                      NBC News
## 1809                                                                                                              
## 1810                                                                                                              
## 1811                                                                                                              
## 1812                                                                                                              
## 1813                                                                                                              
## 1814                                                                                                              
## 1815                                                                                                              
## 1816                                                                                                              
## 1817                                                                                                              
## 1818                                                                                                       Reuters
## 1819                                                                                                         Axios
## 1820                                                                                                         Axios
## 1821                                                                                                         Axios
## 1822                                                                                                         Axios
## 1823                                                                                                              
## 1824                                                                                                              
## 1825                                                                                                              
## 1826                                                                                                              
## 1827                                                                                                     Economist
## 1828                                                                                                     Economist
## 1829                                                                                                     Economist
## 1830                                                                                                     Economist
## 1831                                                                                                              
## 1832                                                                                                       Reuters
## 1833                                                                                                       Reuters
## 1834                                                                                                       Reuters
## 1835                                                                                                    Yahoo News
## 1836                                                                                                    Yahoo News
## 1837                                                                                                    Yahoo News
## 1838                                                                                                    Yahoo News
## 1839                                                                                                    Yahoo News
## 1840                                                                                                      Politico
## 1841                                                                                                      Politico
## 1842                                                                                                      Politico
## 1843                                                                                                      Politico
## 1844                                                                                                      Politico
## 1845                                                                                                      Politico
## 1846                                                                                                      Politico
## 1847                                                                                                      Politico
## 1848                                                                                                      Politico
## 1849                                                                                                      Politico
## 1850                                                                                                      Politico
## 1851                                                                                                      Politico
## 1852                                                                                                      Politico
## 1853                                                                                                      Politico
## 1854                                                                                                      Politico
## 1855                                                                                                      Politico
## 1856                                                                                                    Yahoo News
## 1857                                                                                                    Yahoo News
## 1858                                                                                                    Yahoo News
## 1859                                                                                                    Yahoo News
## 1860                                                                                                    Yahoo News
## 1861                                                                                                       Reuters
## 1862                                                                                                       Reuters
## 1863                                                                                                       Reuters
## 1864                                                                                                           ABC
## 1865                                                                                                      NBC News
## 1866                                                                                                      NBC News
## 1867                                                                                                      NBC News
## 1868                                                                                                      NBC News
## 1869                                                                                                              
## 1870                                                                                                              
## 1871                                                                                                              
## 1872                                                                                                              
## 1873                                                                                                           CNN
## 1874                                                                                                           CNN
## 1875                                                                                                           CNN
## 1876                                                                                                           CNN
## 1877                                                                                                          CNBC
## 1878                                                                                                              
## 1879                                                                                                       Reuters
## 1880                                                                                                              
## 1881                                                                                                              
## 1882                                                                                                              
## 1883                                                                                                              
## 1884                                                                                                              
## 1885                                                                                                              
## 1886                                                                                                              
## 1887                                                                                                       Reuters
## 1888                                                                                                       Reuters
## 1889                                                                                                       Reuters
## 1890                                                                                                       Reuters
## 1891                                                                                           The Washington Post
## 1892                                                                                           The Washington Post
## 1893                                                                                           The Washington Post
## 1894                                                                                           The Washington Post
## 1895                                                                                                              
## 1896                                                                                                              
## 1897                                                                                                              
## 1898                                                                                                              
## 1899                                                                                                      NBC News
## 1900                                                                                                      NBC News
## 1901                                                                                                      NBC News
## 1902                                                                                                      NBC News
## 1903                                                                                                    Yahoo News
## 1904                                                                                                    Yahoo News
## 1905                                                                                                    Yahoo News
## 1906                                                                                                    Yahoo News
## 1907                                                                                                    Yahoo News
## 1908                                                                                                              
## 1909                                                                                                              
## 1910                                                                                                              
## 1911                                                                                                              
## 1912                                                                                                              
## 1913                                                                                                              
## 1914                                                                                             NPR, PBS NewsHour
## 1915                                                                                             NPR, PBS NewsHour
## 1916                                                                                             NPR, PBS NewsHour
## 1917                                                                                             NPR, PBS NewsHour
## 1918                                                                                             NPR, PBS NewsHour
## 1919                                                                                                       Reuters
## 1920                                                                                                     Economist
## 1921                                                                                                     Economist
## 1922                                                                                                     Economist
## 1923                                                                                                     Economist
## 1924                                                                                                       Hill.TV
## 1925                                                                                                       Hill.TV
## 1926                                                                                                       Hill.TV
## 1927                                                                                                       Hill.TV
## 1928                                                                                                              
## 1929                                                                                                              
## 1930                                                                                                              
## 1931                                                                                                              
## 1932                                                                                                       Reuters
## 1933                                                                                                       Reuters
## 1934                                                                                                       Reuters
## 1935                                                                                                       Reuters
## 1936                                                                                                              
## 1937                                                                                                              
## 1938                                                                                                              
## 1939                                                                                                              
## 1940                                                                                                      NBC News
## 1941                                                                                                      NBC News
## 1942                                                                                                      NBC News
## 1943                                                                                                      NBC News
## 1944                                                                                                    Yahoo News
## 1945                                                                                                    Yahoo News
## 1946                                                                                                    Yahoo News
## 1947                                                                                                    Yahoo News
## 1948                                                                                                    Yahoo News
## 1949                                                                                                          CNBC
## 1950                                                                                                              
## 1951                                                                                                              
## 1952                                                                                                              
## 1953                                                                                                              
## 1954                                                                                                              
## 1955                                                                                                              
## 1956                                                                                                              
## 1957                                                                                                              
## 1958                                                                                                     Economist
## 1959                                                                                                     Economist
## 1960                                                                                                     Economist
## 1961                                                                                                     Economist
## 1962                                                                                                     Economist
## 1963                                                                                                              
## 1964                                                                                                              
## 1965                                                                                                              
## 1966                                                                                                              
## 1967                                                                                                       Reuters
## 1968                                                                                                              
## 1969                                                                                                              
## 1970                                                                                                              
## 1971                                                                                                              
## 1972                                                                                                              
## 1973                                                                                                              
## 1974                                                                                                              
## 1975                                                                                                              
## 1976                                                                                                       Reuters
## 1977                                                                                                       Reuters
## 1978                                                                                                       Reuters
## 1979                                                                                                       Reuters
## 1980                                                                                                      ABC News
## 1981                                                                                                 Crooked Media
## 1982                                                                                                    Yahoo News
## 1983                                                                                                    Yahoo News
## 1984                                                                                                    Yahoo News
## 1985                                                                                                              
## 1986                                                                                                              
## 1987                                                                                                              
## 1988                                                                                                      NBC News
## 1989                                                                                                      NBC News
## 1990                                                                                                      NBC News
## 1991                                                                                                      NBC News
## 1992                                                                                                              
## 1993                                                                                                     Economist
## 1994                                                                                                     Economist
## 1995                                                                                                     Economist
## 1996                                                                                                     Economist
## 1997                                                                                                     Economist
## 1998                                                                                                       Reuters
## 1999                                                                                                      HuffPost
## 2000                                                                                                      HuffPost
## 2001                                                                                                      HuffPost
## 2002                                                                                                      HuffPost
## 2003                                                                                                     USA Today
## 2004                                                                                                     USA Today
## 2005                                                                                                     USA Today
## 2006                                                                                                     USA Today
## 2007                                                                                                              
## 2008                                                                                                              
## 2009                                                                                                              
## 2010                                                                                                              
## 2011                                                                                                              
## 2012                                                                                                              
## 2013                                                                                                              
## 2014                                                                                                              
## 2015                                                                                                              
## 2016                                                                                                              
## 2017                                                                                                              
## 2018                                                                                                              
## 2019                                                                                                              
## 2020                                                                                                         Axios
## 2021                                                                                                         Axios
## 2022                                                                                                         Axios
## 2023                                                                                                         Axios
## 2024                                                                                                    Yahoo News
## 2025                                                                                                    Yahoo News
## 2026                                                                                                    Yahoo News
## 2027                                                                                                    Yahoo News
## 2028                                                                                                    Yahoo News
## 2029                                                                                                          CNBC
## 2030                                                                                                      NBC News
## 2031                                                                                                      NBC News
## 2032                                                                                                      NBC News
## 2033                                                                                                      NBC News
## 2034                                                                                                       Reuters
## 2035                                                                                                     Economist
## 2036                                                                                                     Economist
## 2037                                                                                                     Economist
## 2038                                                                                                     Economist
## 2039                                                                                                              
## 2040                                                                                                              
## 2041                                                                                                              
## 2042                                                                                                              
## 2043                                                                                                              
## 2044                                                                                                              
## 2045                                                                                                              
## 2046                                                                                                              
## 2047                                                                                                              
## 2048                                                                                                     Economist
## 2049                                                                                                     Economist
## 2050                                                                                                     Economist
## 2051                                                                                                     Economist
## 2052                                                                                                              
## 2053                                                                                                              
## 2054                                                                                                              
## 2055                                                                                                              
## 2056                                                                                                              
## 2057                                                                                                              
## 2058                                                                                                              
## 2059                                                                                                              
## 2060                                                                                                      HuffPost
## 2061                                                                                                      HuffPost
## 2062                                                                                                      HuffPost
## 2063                                                                                                      HuffPost
## 2064                                                                                                       Reuters
## 2065                                                                                                       Reuters
## 2066                                                                                                       Reuters
## 2067                                                                                                       Reuters
## 2068                                                                                                              
## 2069                                                                                                              
## 2070                                                                                                              
## 2071                                                                                                              
## 2072                                                                                                       Harvard
## 2073                                                                                                       Harvard
## 2074                                                                                                       Harvard
## 2075                                                                                                       Harvard
## 2076                                                                                                              
## 2077                                                                                                              
## 2078                                                                                                              
## 2079                                                                                                              
## 2080                                                                                                              
## 2081                                                                                Survey Center on American Life
## 2082                                                                                                              
## 2083                                                                                                              
## 2084                                                                                                              
## 2085                                                                                                              
## 2086                                                                                                     Economist
## 2087                                                                                                     Economist
## 2088                                                                                                     Economist
## 2089                                                                                                     Economist
## 2090                                                                                                              
## 2091                                                                                                              
## 2092                                                                                                              
## 2093                                                                                                              
## 2094                                                                                                              
## 2095                                                                                                              
## 2096                                                                                                              
## 2097                                                                                                              
## 2098                                                                                                       Reuters
## 2099                                                                                                              
## 2100                                                                                                              
## 2101                                                                                                              
## 2102                                                                                                              
## 2103                                                                                                              
## 2104                                                                                                              
## 2105                                                                                                              
## 2106                                                                                                              
## 2107                                                                                             NPR, PBS Newshour
## 2108                                                                                             NPR, PBS Newshour
## 2109                                                                                             NPR, PBS Newshour
## 2110                                                                                             NPR, PBS Newshour
## 2111                                                                                             NPR, PBS Newshour
## 2112                                                                                                              
## 2113                                                                                                              
## 2114                                                                                                              
## 2115                                                                                                              
## 2116                                                                                                       Reuters
## 2117                                                                                                     Economist
## 2118                                                                                                     Economist
## 2119                                                                                                     Economist
## 2120                                                                                                     Economist
## 2121                                                                                                              
## 2122                                                                                                              
## 2123                                                                                                              
## 2124                                                                                                              
## 2125                                                                                                              
## 2126                                                                                                              
## 2127                                                                                                              
## 2128                                                                                                              
## 2129                                                                                                              
## 2130                                                                                                              
## 2131                                                                                                              
## 2132                                                                                                              
## 2133                                                                                            The New York Times
## 2134                                                                                            The New York Times
## 2135                                                                                            The New York Times
## 2136                                                                                            The New York Times
## 2137                                                                                                       Reuters
## 2138                                                                                                     Economist
## 2139                                                                                                     Economist
## 2140                                                                                                     Economist
## 2141                                                                                                     Economist
## 2142                                                                                                              
## 2143                                                                                                              
## 2144                                                                                                              
## 2145                                                                                                     Economist
## 2146                                                                                                              
## 2147                                                                                                              
## 2148                                                                                                              
## 2149                                                                                                              
## 2150                                                                                                              
## 2151                                                                                                              
## 2152                                                                                                              
## 2153                                                                                                              
## 2154                                                                                                              
## 2155                                                                                                              
## 2156                                                                                                              
## 2157                                                                                                              
## 2158                                                                                                              
## 2159                                                                                                     Economist
## 2160                                                                                                     Economist
## 2161                                                                                                     Economist
## 2162                                                                                                     Economist
## 2163                                                                                                     Economist
## 2164                                                                                                       Reuters
## 2165                                                                                                              
## 2166                                                                                                              
## 2167                                                                                                              
## 2168                                                                                                              
## 2169                                                                                                              
## 2170                                                                                                              
## 2171                                                                                                              
## 2172                                                                                                              
## 2173                                                                                                              
## 2174                                                                                                              
## 2175                                                                                                              
## 2176                                                                                                              
## 2177                                                                                                              
## 2178                                                                                                              
## 2179                                                                                                              
## 2180                                                                                                              
## 2181                                                                                                       Hill.TV
## 2182                                                                                                       Hill.TV
## 2183                                                                                                       Hill.TV
## 2184                                                                                                       Hill.TV
## 2185                                                                                                     Economist
## 2186                                                                                                     Economist
## 2187                                                                                                     Economist
## 2188                                                                                                     Economist
## 2189                                                                                                       Reuters
## 2190                                                                                                              
## 2191                                                                                                              
## 2192                                                                                                              
## 2193                                                                                                              
## 2194                                                                                                     Economist
## 2195                                                                                                     Economist
## 2196                                                                                                     Economist
## 2197                                                                                                     Economist
## 2198                                                                                                     Economist
## 2199                                                                                                              
## 2200                                                                                                              
## 2201                                                                                                              
## 2202                                                                                             NPR, PBS NewsHour
## 2203                                                                                             NPR, PBS NewsHour
## 2204                                                                                             NPR, PBS NewsHour
## 2205                                                                                             NPR, PBS NewsHour
## 2206                                                                                             NPR, PBS NewsHour
## 2207                                                                                           The Washington Post
## 2208                                                                                           The Washington Post
## 2209                                                                                           The Washington Post
## 2210                                                                                           The Washington Post
## 2211                                                                                                           CNN
## 2212                                                                                                           CNN
## 2213                                                                                                           CNN
## 2214                                                                                                           CNN
## 2215                                                                                                              
## 2216                                                                                                              
## 2217                                                                                                              
## 2218                                                                                                              
## 2219                                                                                                              
## 2220                                                                                                              
## 2221                                                                                                              
## 2222                                                                                                              
## 2223                                                                                                     Economist
## 2224                                                                                                     Economist
## 2225                                                                                                     Economist
## 2226                                                                                                     Economist
## 2227                                                                                                    Yahoo News
## 2228                                                                                                    Yahoo News
## 2229                                                                                                    Yahoo News
## 2230                                                                                                    Yahoo News
## 2231                                                                                                       Hill.TV
## 2232                                                                                                      ABC News
## 2233                                                                                                     Economist
## 2234                                                                                                     Economist
## 2235                                                                                                     Economist
## 2236                                                                                                     Economist
## 2237                                                                                                              
## 2238                                                                                                              
## 2239                                                                                                      Politico
## 2240                                                                                                      Politico
## 2241                                                                                                      Politico
## 2242                                                                                                      Politico
## 2243                                                                                                              
## 2244                                                                                                              
## 2245                                                                                                              
## 2246                                                                                                              
## 2247                                                                                                     Economist
## 2248                                                                                                     Economist
## 2249                                                                                                     Economist
## 2250                                                                                                     Economist
## 2251                                                                                                              
## 2252                                                                                                              
## 2253                                                                                                              
## 2254                                                                                                      ABC News
## 2255                                                                                                      HuffPost
## 2256                                                                                                      HuffPost
## 2257                                                                                                      HuffPost
## 2258                                                                                                      HuffPost
## 2259                                                                                                     Economist
## 2260                                                                                                     Economist
## 2261                                                                                                     Economist
## 2262                                                                                                     Economist
## 2263                                                                                                       Hill.TV
## 2264                                                                                                              
## 2265                                                                                                              
## 2266                                                                                                              
## 2267                                                                                                              
## 2268                                                                                                              
## 2269                                                                                                              
## 2270                                                                                                              
## 2271                                                                                                              
## 2272                                                                                                      Politico
## 2273                                                                                                      Politico
## 2274                                                                                                      Politico
## 2275                                                                                                      Politico
## 2276                                                                                                       Hill.TV
## 2277                                                                                                      HuffPost
## 2278                                                                                                      HuffPost
## 2279                                                                                                      HuffPost
## 2280                                                                                                      HuffPost
## 2281                                                                                                     Economist
## 2282                                                                                                     Economist
## 2283                                                                                                     Economist
## 2284                                                                                                     Economist
## 2285                                                                                                              
## 2286                                                                                                              
## 2287                                                                                                              
## 2288                                                                                                              
## 2289                                                                                                              
## 2290                                                                                                              
## 2291                                                                                                              
## 2292                                                                                                              
## 2293                                                                                                              
## 2294                                                                                                              
## 2295                                                                                                              
## 2296                                                                                                              
## 2297                                                                                                              
## 2298                                                                                                     Economist
## 2299                                                                                                     Economist
## 2300                                                                                                     Economist
## 2301                                                                                                     Economist
## 2302                                                                                                              
## 2303                                                                                                              
## 2304                                                                                                              
## 2305                                                                                                              
## 2306                                                                                                       Hill.TV
## 2307                                                                                                       Hill.TV
## 2308                                                                                                       Hill.TV
## 2309                                                                                                       Hill.TV
## 2310                                                                                                       Harvard
## 2311                                                                                                       Harvard
## 2312                                                                                                       Harvard
## 2313                                                                                                       Harvard
## 2314                                                                                                      Politico
## 2315                                                                                                      Politico
## 2316                                                                                                      Politico
## 2317                                                                                                      Politico
## 2318                                                                                                              
## 2319                                                                                                              
## 2320                                                                                                              
## 2321                                                                                                              
## 2322                                                                                                              
## 2323                                                                                                              
## 2324                                                                                                              
## 2325                                                                                                              
## 2326                                                                                                     Economist
## 2327                                                                                                     Economist
## 2328                                                                                                     Economist
## 2329                                                                                                     Economist
## 2330                                                                                                              
## 2331                                                                                                              
## 2332                                                                                                              
## 2333                                                                                                      ABC News
## 2334                                                                                                    Yahoo News
## 2335                                                                                                    Yahoo News
## 2336                                                                                                    Yahoo News
## 2337                                                                                                    Yahoo News
## 2338                                                                                                           CNN
## 2339                                                                                                           CNN
## 2340                                                                                                           CNN
## 2341                                                                                                           CNN
## 2342                                                                                             NPR, PBS NewsHour
## 2343                                                                                             NPR, PBS NewsHour
## 2344                                                                                             NPR, PBS NewsHour
## 2345                                                                                             NPR, PBS NewsHour
## 2346                                                                                                       Hill.TV
## 2347                                                                                                     Economist
## 2348                                                                                                     Economist
## 2349                                                                                                     Economist
## 2350                                                                                                     Economist
## 2351                                                                                                              
## 2352                                                                                                              
## 2353                                                                                                              
## 2354                                                                                                              
## 2355                                                                                                       Hill.TV
## 2356                                                                                                      Politico
## 2357                                                                                                      Politico
## 2358                                                                                                      Politico
## 2359                                                                                                      Politico
## 2360                                                                                                              
## 2361                                                                                                              
## 2362                                                                                                              
## 2363                                                                                                              
## 2364                                                                                                     Economist
## 2365                                                                                                     Economist
## 2366                                                                                                     Economist
## 2367                                                                                                     Economist
## 2368                                                                                                              
## 2369                                                                                                              
## 2370                                                                                                              
## 2371                                                                                                              
## 2372                                                                                                              
## 2373                                                                                                              
## 2374 Yale Program on Climate Change Communication, George Mason University Center for Climate Change Communication
## 2375                                                                                                     Economist
## 2376                                                                                                     Economist
## 2377                                                                                                     Economist
## 2378                                                                                                     Economist
## 2379                                                                                                              
## 2380                                                                                                              
## 2381                                                                                                              
## 2382                                                                                                              
## 2383                                                                                                    Yahoo News
## 2384                                                                                                    Yahoo News
## 2385                                                                                                    Yahoo News
## 2386                                                                                                    Yahoo News
## 2387                                                                                                       Harvard
## 2388                                                                                                           NPR
## 2389                                                                                                           NPR
## 2390                                                                                                           NPR
## 2391                                                                                                           NPR
## 2392                                                                                                           NPR
## 2393                                                                                                       Hill.TV
## 2394                                                                                                       Hill.TV
## 2395                                                                                                       Hill.TV
## 2396                                                                                                       Hill.TV
## 2397                                                                                                      ABC News
## 2398                                                                                                      Politico
## 2399                                                                                                      Politico
## 2400                                                                                                      Politico
## 2401                                                                                                      Politico
## 2402                                                                                                              
## 2403                                                                                                              
## 2404                                                                                                              
## 2405                                                                                                              
## 2406                                                                                                              
## 2407                                                                                                              
## 2408                                                                                                              
## 2409                                                                                                              
## 2410                                                                                                              
## 2411                                                                                                              
## 2412                                                                                                              
## 2413                                                                                                              
## 2414                                                                                                 The Economist
## 2415                                                                                                 The Economist
## 2416                                                                                                 The Economist
## 2417                                                                                                 The Economist
## 2418                                                                                                 The Economist
## 2419                                                                                                       Hill.TV
## 2420                                                                                                       Hill.TV
## 2421                                                                                                       Hill.TV
## 2422                                                                                                       Hill.TV
## 2423                                                                                                     Economist
## 2424                                                                                                     Economist
## 2425                                                                                                     Economist
## 2426                                                                                                     Economist
## 2427                                                                                                              
## 2428                                                                                                              
## 2429                                                                                                              
## 2430                                                                                                    Yahoo News
## 2431                                                                                                    Yahoo News
## 2432                                                                                                    Yahoo News
## 2433                                                                                                    Yahoo News
## 2434                                                                                            Winning the Issues
## 2435                                                                              CNBC All-America Economic Survey
## 2436                                                                                                      Politico
## 2437                                                                                                      Politico
## 2438                                                                                                      Politico
## 2439                                                                                                      Politico
## 2440                                                                                                              
## 2441                                                                                                              
## 2442                                                                                                              
## 2443                                                                                                              
## 2444                                                                                                              
## 2445                                                                                                              
## 2446                                                                                                              
## 2447                                                                                                              
## 2448                                                                                                     Economist
## 2449                                                                                                     Economist
## 2450                                                                                                     Economist
## 2451                                                                                                     Economist
## 2452                                                                                                       Hill.TV
## 2453                                                                                                       Hill.TV
## 2454                                                                                                       Hill.TV
## 2455                                                                                                       Hill.TV
## 2456                                                                                                       Reuters
## 2457                                                                                                              
## 2458                                                                                                              
## 2459                                                                                                              
## 2460                                                                                                              
## 2461                                                                                                     Economist
## 2462                                                                                                     Economist
## 2463                                                                                                     Economist
## 2464                                                                                                     Economist
## 2465                                                                                                              
## 2466                                                                                                              
## 2467                                                                                                              
## 2468                                                                                                              
## 2469                                                                                                              
## 2470                                                                                                              
## 2471                                                                                                              
## 2472                                                                                                              
## 2473                                                                                                              
## 2474                                                                                                              
## 2475                                                                                                              
## 2476                                                                                           The Washington Post
## 2477                                                                                           The Washington Post
## 2478                                                                                           The Washington Post
## 2479                                                                                           The Washington Post
## 2480                                                                                                              
## 2481                                                                                                              
## 2482                                                                                                              
## 2483                                                                                                              
## 2484                                                                                                              
## 2485                                                                                                              
## 2486                                                                                                              
## 2487                                                                                                              
## 2488                                                                                                      Politico
## 2489                                                                                                      Politico
## 2490                                                                                                      Politico
## 2491                                                                                                      Politico
## 2492                                                                                                           CNN
## 2493                                                                                                           CNN
## 2494                                                                                                           CNN
## 2495                                                                                                           CNN
## 2496                                                                                                     Economist
## 2497                                                                                                     Economist
## 2498                                                                                                     Economist
## 2499                                                                                                     Economist
## 2500                                                                                                       Hill.TV
## 2501                                                                                                       Hill.TV
## 2502                                                                                                       Hill.TV
## 2503                                                                                                       Hill.TV
## 2504                                                                                                    Yahoo News
## 2505                                                                                                    Yahoo News
## 2506                                                                                                    Yahoo News
## 2507                                                                                                    Yahoo News
## 2508                                                                                                       Harvard
## 2509                                                                                                       Harvard
## 2510                                                                                                       Harvard
## 2511                                                                                                       Harvard
## 2512                                                                                                              
## 2513                                                                                                              
## 2514                                                                                                              
## 2515                                                                                                              
## 2516                                                                                                     Economist
## 2517                                                                                                     Economist
## 2518                                                                                                     Economist
## 2519                                                                                                     Economist
## 2520                                                                                                       Hill.TV
## 2521                                                                                                       Hill.TV
## 2522                                                                                                       Hill.TV
## 2523                                                                                                       Hill.TV
## 2524                                                                                                      Politico
## 2525                                                                                                      Politico
## 2526                                                                                                      Politico
## 2527                                                                                                      Politico
## 2528                                                                                                              
## 2529                                                                                                              
## 2530                                                                                                              
## 2531                                                                                                              
## 2532                                                                                             NPR, PBS NewsHour
## 2533                                                                                             NPR, PBS NewsHour
## 2534                                                                                             NPR, PBS NewsHour
## 2535                                                                                             NPR, PBS NewsHour
## 2536                                                                                             NPR, PBS NewsHour
## 2537                                                                                                     Economist
## 2538                                                                                                     Economist
## 2539                                                                                                     Economist
## 2540                                                                                                     Economist
## 2541                                                                                                    Yahoo News
## 2542                                                                                                    Yahoo News
## 2543                                                                                                    Yahoo News
## 2544                                                                                                    Yahoo News
## 2545                                                                                                              
## 2546                                                                                                              
## 2547                                                                                                              
## 2548                                                                                                              
## 2549                                                                                                              
## 2550                                                                                                              
## 2551                                                                                                              
## 2552                                                                                                     Economist
## 2553                                                                                                     Economist
## 2554                                                                                                     Economist
## 2555                                                                                                     Economist
## 2556                                                                                                       Hill.TV
## 2557                                                                                                       Hill.TV
## 2558                                                                                                       Hill.TV
## 2559                                                                                                       Hill.TV
## 2560                                                                                                              
## 2561                                                                                                              
## 2562                                                                                                              
## 2563                                                                                                              
## 2564                                                                                                              
## 2565                                                                                                              
## 2566                                                                                                              
## 2567                                                                                                              
## 2568                                                                                                              
## 2569                                                                                                              
## 2570                                                                                                              
## 2571                                                                                                              
## 2572                                                                                                              
## 2573                                                                                                     Economist
## 2574                                                                                                     Economist
## 2575                                                                                                     Economist
## 2576                                                                                                     Economist
## 2577                                                                                                              
## 2578                                                                                                              
## 2579                                                                                                              
## 2580                                                                                                              
## 2581                                                                                                              
## 2582                                                                                                              
## 2583                                                                                                              
## 2584                                                                                                              
## 2585                                                                                                    Yahoo News
## 2586                                                                                                    Yahoo News
## 2587                                                                                                    Yahoo News
## 2588                                                                                                    Yahoo News
## 2589                                                                                                     Economist
## 2590                                                                                                     Economist
## 2591                                                                                                     Economist
## 2592                                                                                                     Economist
## 2593                                                                                                     Economist
## 2594                                                                                                     Economist
## 2595                                                                                                     Economist
## 2596                                                                                                     Economist
## 2597                                                                                                       Hill.TV
## 2598                                                                                                       Hill.TV
## 2599                                                                                                       Hill.TV
## 2600                                                                                                       Hill.TV
## 2601                                                                                                      Politico
## 2602                                                                                                      Politico
## 2603                                                                                                      Politico
## 2604                                                                                                      Politico
## 2605                                                                                                              
## 2606                                                                                                              
## 2607                                                                                                              
## 2608                                                                                                              
## 2609                                                                                                              
## 2610                                                                                                              
## 2611                                                                                                              
## 2612                                                                                                              
## 2613                                                                                                     Economist
## 2614                                                                                                     Economist
## 2615                                                                                                     Economist
## 2616                                                                                                     Economist
## 2617                                                                                                       Reuters
## 2618                                                                                                       Reuters
## 2619                                                                                                       Reuters
## 2620                                                                                                       Reuters
## 2621                                                                                                              
## 2622                                                                                                              
## 2623                                                                                                              
## 2624                                                                                                              
## 2625                                                                                                     Economist
## 2626                                                                                                     Economist
## 2627                                                                                                     Economist
## 2628                                                                                                     Economist
## 2629                                                                                                              
## 2630                                                                                                              
## 2631                                                                                                              
## 2632                                                                                                              
## 2633                                                                                                              
## 2634                                                                                                              
## 2635                                                                                                              
## 2636                                                                                                              
## 2637                                                                                  George Washington University
## 2638                                                                                                    Yahoo News
## 2639                                                                                                    Yahoo News
## 2640                                                                                                    Yahoo News
## 2641                                                                                                    Yahoo News
## 2642                                                                                                      Politico
## 2643                                                                                                      Politico
## 2644                                                                                                      Politico
## 2645                                                                                                      Politico
## 2646                                                                                                              
## 2647                                                                                                              
## 2648                                                                                                              
## 2649                                                                                                              
## 2650                                                                                                     Economist
## 2651                                                                                                     Economist
## 2652                                                                                                     Economist
## 2653                                                                                                     Economist
## 2654                                                                                             NPR, PBS Newshour
## 2655                                                                                             NPR, PBS Newshour
## 2656                                                                                             NPR, PBS Newshour
## 2657                                                                                             NPR, PBS Newshour
## 2658                                                                                           The Washington Post
## 2659                                                                                           The Washington Post
## 2660                                                                                           The Washington Post
## 2661                                                                                           The Washington Post
## 2662                                                                                                              
## 2663                                                                                                     Economist
## 2664                                                                                                     Economist
## 2665                                                                                                     Economist
## 2666                                                                                                     Economist
## 2667                                                                                                       Hill.TV
## 2668                                                                                                       Hill.TV
## 2669                                                                                                       Hill.TV
## 2670                                                                                                       Hill.TV
## 2671                                                                                                     Economist
## 2672                                                                                                     Economist
## 2673                                                                                                     Economist
## 2674                                                                                                     Economist
## 2675                                                                                                              
## 2676                                                                                                              
## 2677                                                                                                              
## 2678                                                                                                              
## 2679                                                                                                    Yahoo News
## 2680                                                                                                    Yahoo News
## 2681                                                                                                    Yahoo News
## 2682                                                                                                    Yahoo News
## 2683                                                                                                              
## 2684                                                                                                      Politico
## 2685                                                                                                      Politico
## 2686                                                                                                      Politico
## 2687                                                                                                      Politico
## 2688                                                                                                              
## 2689                                                                                                              
## 2690                                                                                                              
## 2691                                                                                                              
## 2692                                                                                                              
## 2693                                                                                                              
## 2694                                                                                                              
## 2695                                                                                                              
## 2696                                                                                                              
## 2697                                                                                                              
## 2698                                                                                                              
## 2699                                                                                                              
## 2700                                                                                                              
## 2701                                                                                                     Economist
## 2702                                                                                                     Economist
## 2703                                                                                                     Economist
## 2704                                                                                                     Economist
## 2705                                                                                                       Hill.TV
## 2706                                                                                                       Hill.TV
## 2707                                                                                                       Hill.TV
## 2708                                                                                                       Hill.TV
## 2709                                                                                                              
## 2710                                                                                                              
## 2711                                                                                                              
## 2712                                                                                                              
## 2713                                                                                                      ABC News
## 2714                                                                                                     Economist
## 2715                                                                                                     Economist
## 2716                                                                                                     Economist
## 2717                                                                                                     Economist
## 2718                                                                              CNBC All-America Economic Survey
## 2719                                                                                                              
## 2720                                                                                                      Politico
## 2721                                                                                                      Politico
## 2722                                                                                                      Politico
## 2723                                                                                                      Politico
## 2724                                                                                                      Politico
## 2725                                                                                                      Politico
## 2726                                                                                                      Politico
## 2727                                                                                                      Politico
## 2728                                                                                                              
## 2729                                                                                                              
## 2730                                                                                                              
## 2731                                                                                                              
## 2732                                                                                                              
## 2733                                                                                                              
## 2734                                                                                                              
## 2735                                                                                                              
## 2736                                                                                                              
## 2737                                                                                                              
## 2738                                                                                                              
## 2739                                                                                                    Yahoo News
## 2740                                                                                                    Yahoo News
## 2741                                                                                                    Yahoo News
## 2742                                                                                                    Yahoo News
## 2743                                                                                                     Economist
## 2744                                                                                                     Economist
## 2745                                                                                                     Economist
## 2746                                                                                                     Economist
## 2747                                                                                                              
## 2748                                                                                                       Hill.TV
## 2749                                                                                                       Hill.TV
## 2750                                                                                                       Hill.TV
## 2751                                                                                                       Hill.TV
## 2752                                                                                       Senate Opportunity Fund
## 2753                                                                                                     Economist
## 2754                                                                                                     Economist
## 2755                                                                                                     Economist
## 2756                                                                                                     Economist
## 2757                                                                                                              
## 2758                                                                                                              
## 2759                                                                                                              
## 2760                                                                                                              
## 2761                                                                                                      Politico
## 2762                                                                                                      Politico
## 2763                                                                                                      Politico
## 2764                                                                                                      Politico
## 2765                                                                                                              
## 2766                                                                                                              
## 2767                                                                                                              
## 2768                                                                                                              
## 2769                                                                                                              
## 2770                                                                                                              
## 2771                                                                                                              
## 2772                                                                                                              
## 2773                                                                                                     Economist
## 2774                                                                                                     Economist
## 2775                                                                                                     Economist
## 2776                                                                                                     Economist
## 2777                                                                                                              
## 2778                                                                                                              
## 2779                                                                                                              
## 2780                                                                                                              
## 2781                                                                                                              
## 2782                                                                                                The Federalist
## 2783                                                                                                The Federalist
## 2784                                                                                                The Federalist
## 2785                                                                                                The Federalist
## 2786                                                                                                    Yahoo News
## 2787                                                                                                    Yahoo News
## 2788                                                                                                    Yahoo News
## 2789                                                                                                    Yahoo News
## 2790                                                                                                              
## 2791                                                                                                              
## 2792                                                                                                              
## 2793                                                                                                              
## 2794                                                                                                       Reuters
## 2795                                                                                                       Reuters
## 2796                                                                                                       Reuters
## 2797                                                                                                       Reuters
## 2798                                                                                                              
## 2799                                                                                                              
## 2800                                                                                                              
## 2801                                                                                                              
## 2802                                                                                                              
## 2803                                                                                                       Hill.TV
## 2804                                                                                                       Hill.TV
## 2805                                                                                                       Hill.TV
## 2806                                                                                                       Hill.TV
## 2807                                                                                                              
## 2808                                                                                                              
## 2809                                                                                                              
## 2810                                                                                                              
## 2811                                                                                                     USA Today
## 2812                                                                                                     USA Today
## 2813                                                                                                     USA Today
## 2814                                                                                                     USA Today
## 2815                                                                                                     Economist
## 2816                                                                                                     Economist
## 2817                                                                                                     Economist
## 2818                                                                                                     Economist
## 2819                                                                                                      ABC News
## 2820                                                                                                       Reuters
## 2821                                                                                                       Reuters
## 2822                                                                                                       Reuters
## 2823                                                                                                       Reuters
## 2824                                                                                                      Politico
## 2825                                                                                                      Politico
## 2826                                                                                                      Politico
## 2827                                                                                                      Politico
## 2828                                                                                                              
## 2829                                                                                                              
## 2830                                                                                                              
## 2831                                                                                                              
## 2832                                                                                                     Economist
## 2833                                                                                                     Economist
## 2834                                                                                                     Economist
## 2835                                                                                                     Economist
## 2836                                                                                             NPR, PBS NewsHour
## 2837                                                                                             NPR, PBS NewsHour
## 2838                                                                                             NPR, PBS NewsHour
## 2839                                                                                             NPR, PBS NewsHour
## 2840                                                                                             NPR, PBS NewsHour
## 2841                                                                                           The Washington Post
## 2842                                                                                           The Washington Post
## 2843                                                                                           The Washington Post
## 2844                                                                                           The Washington Post
## 2845                                                                                                    Yahoo News
## 2846                                                                                                    Yahoo News
## 2847                                                                                                    Yahoo News
## 2848                                                                                                    Yahoo News
## 2849                                                                                                          CNBC
## 2850                                                                                                              
## 2851                                                                                                              
## 2852                                                                                                              
## 2853                                                                                                              
## 2854                                                                                                     Economist
## 2855                                                                                                     Economist
## 2856                                                                                                     Economist
## 2857                                                                                                     Economist
## 2858                                                                                                           CNN
## 2859                                                                                                           CNN
## 2860                                                                                                           CNN
## 2861                                                                                                           CNN
## 2862                                                                                  George Washington University
## 2863                                                                                  George Washington University
## 2864                                                                                  George Washington University
## 2865                                                                                  George Washington University
## 2866                                                                                                       Hill.TV
## 2867                                                                                                              
## 2868                                                                                                              
## 2869                                                                                                              
## 2870                                                                                                              
## 2871                                                                                                              
## 2872                                                                                                              
## 2873                                                                                                              
## 2874                                                                                                              
## 2875                                                                                                     Economist
## 2876                                                                                                     Economist
## 2877                                                                                                     Economist
## 2878                                                                                                     Economist
## 2879                                                                                                              
## 2880                                                                                                              
## 2881                                                                                                              
## 2882                                                                                                              
## 2883                                                                                                       Reuters
## 2884                                                                                                              
## 2885                                                                                                              
## 2886                                                                                                              
## 2887                                                                                                              
## 2888                                                                                                              
## 2889                                                                                                              
## 2890                                                                                                              
## 2891                                                                                                              
## 2892                                                                                                      Politico
## 2893                                                                                                      Politico
## 2894                                                                                                      Politico
## 2895                                                                                                      Politico
## 2896                                                                                                    Yahoo News
## 2897                                                                                                    Yahoo News
## 2898                                                                                                    Yahoo News
## 2899                                                                                                    Yahoo News
## 2900                                                                                                              
## 2901                                                                                                              
## 2902                                                                                                              
## 2903                                                                                                              
## 2904                                                                                                     Economist
## 2905                                                                                                     Economist
## 2906                                                                                                     Economist
## 2907                                                                                                     Economist
## 2908                                                                                                              
## 2909                                                                                                              
## 2910                                                                                                              
## 2911                                                                                                              
## 2912                                                                                                              
## 2913                                                                                                              
## 2914                                                                                                              
## 2915                                                                                                              
## 2916                                                                                                              
## 2917                                                                                                              
## 2918                                                                                                              
## 2919                                                                                                              
## 2920                                                                     Northeastern,Harvard,Rutgers,Northwestern
## 2921                                                                                                      ABC News
## 2922                                                                                                     Economist
## 2923                                                                                                     Economist
## 2924                                                                                                     Economist
## 2925                                                                                                     Economist
## 2926                                                                                                       Hill.TV
## 2927                                                                                                              
## 2928                                                                                                              
## 2929                                                                                                              
## 2930                                                                                                              
## 2931                                                                                                              
## 2932                                                                                                      Politico
## 2933                                                                                                      Politico
## 2934                                                                                                      Politico
## 2935                                                                                                      Politico
## 2936                                                                                                              
## 2937                                                                                                              
## 2938                                                                                                              
## 2939                                                                                                              
## 2940                                                                                                    Yahoo News
## 2941                                                                                                    Yahoo News
## 2942                                                                                                    Yahoo News
## 2943                                                                                                    Yahoo News
## 2944                                                                                                     Economist
## 2945                                                                                                     Economist
## 2946                                                                                                     Economist
## 2947                                                                                                     Economist
## 2948                                                                                                              
## 2949                                                                                                              
## 2950                                                                                                              
## 2951                                                                                                              
## 2952                                                                                                              
## 2953                                                                                                              
## 2954                                                                                                              
## 2955                                                                                                              
## 2956                                                                                                     Economist
## 2957                                                                                                     Economist
## 2958                                                                                                     Economist
## 2959                                                                                                     Economist
## 2960                                                                                                              
## 2961                                                                                                              
## 2962                                                                                                              
## 2963                                                                                                              
## 2964                                                                                              Grinnell College
## 2965                                                                                              Grinnell College
## 2966                                                                                              Grinnell College
## 2967                                                                                              Grinnell College
## 2968                                                                              CNBC All-America Economic Survey
## 2969                                                                                                              
## 2970                                                                                                              
## 2971                                                                                                              
## 2972                                                                                                              
## 2973                                                                                                      Politico
## 2974                                                                                                      Politico
## 2975                                                                                                      Politico
## 2976                                                                                                      Politico
## 2977                                                                                                     Economist
## 2978                                                                                                     Economist
## 2979                                                                                                     Economist
## 2980                                                                                                     Economist
## 2981                                                                                                              
## 2982                                                                                                              
## 2983                                                                                                              
## 2984                                                                                                              
## 2985                                                                                                              
## 2986                                                                                                              
## 2987                                                                                                              
## 2988                                                                                                              
## 2989                                                                                                              
## 2990                                                                                                              
## 2991                                                                                                              
## 2992                                                                                                              
## 2993                                                                                                              
## 2994                                                                                                              
## 2995                                                                                                              
## 2996                                                                                                              
## 2997                                                                                                       Hill.TV
## 2998                                                                                                       Hill.TV
## 2999                                                                                                       Hill.TV
## 3000                                                                                                       Hill.TV
## 3001                                                                                                              
## 3002                                                                                                              
## 3003                                                                                                              
## 3004                                                                                                              
## 3005                                                                                                              
## 3006                                                                                                     Economist
## 3007                                                                                                     Economist
## 3008                                                                                                     Economist
## 3009                                                                                                     Economist
## 3010                                                                                                              
## 3011                                                                                                       Harvard
## 3012                                                                                                       Harvard
## 3013                                                                                                       Harvard
## 3014                                                                                                       Harvard
## 3015                                                                                                      ABC News
## 3016                                                                                                              
## 3017                                                                                                              
## 3018                                                                                                              
## 3019                                                                                                              
## 3020                                                                                                              
## 3021                                                                                                      Politico
## 3022                                                                                                      Politico
## 3023                                                                                                      Politico
## 3024                                                                                                      Politico
## 3025                                                                                                     Economist
## 3026                                                                                                     Economist
## 3027                                                                                                     Economist
## 3028                                                                                                     Economist
## 3029                                                                                                     USA Today
## 3030                                                                                                     USA Today
## 3031                                                                                                     USA Today
## 3032                                                                                                     USA Today
## 3033                                                                                                              
## 3034                                                                                                              
## 3035                                                                                                              
## 3036                                                                                                              
## 3037                                                                                                    Yahoo News
## 3038                                                                                                    Yahoo News
## 3039                                                                                                    Yahoo News
## 3040                                                                                                    Yahoo News
## 3041                                                                                                     Economist
## 3042                                                                                                     Economist
## 3043                                                                                                     Economist
## 3044                                                                                                     Economist
## 3045                                                                                                The Federalist
## 3046                                                                                                The Federalist
## 3047                                                                                                The Federalist
## 3048                                                                                                The Federalist
## 3049                                                                                           The Washington Post
## 3050                                                                                           The Washington Post
## 3051                                                                                           The Washington Post
## 3052                                                                                           The Washington Post
## 3053                                                                                                      Politico
## 3054                                                                                                      Politico
## 3055                                                                                                      Politico
## 3056                                                                                                      Politico
## 3057                                                                                                              
## 3058                                                                                                              
## 3059                                                                                                              
## 3060                                                                                                              
## 3061                                                                                                              
## 3062                                                                                                              
## 3063                                                                                                              
## 3064                                                                                                              
## 3065                                                                                                     Economist
## 3066                                                                                                     Economist
## 3067                                                                                                     Economist
## 3068                                                                                                     Economist
## 3069                                                                                                              
## 3070                                                                                                              
## 3071                                                                                                              
## 3072                                                                                                              
## 3073                                                                                                              
## 3074                                                                                                              
## 3075                                                                                                              
## 3076                                                                                                              
## 3077                                                                                                              
## 3078                                                                                                              
## 3079                                                                                                              
## 3080                                                                                                              
## 3081                                                                                                    Yahoo News
## 3082                                                                                                    Yahoo News
## 3083                                                                                                    Yahoo News
## 3084                                                                                                    Yahoo News
## 3085                                                                                                              
## 3086                                                                                                              
## 3087                                                                                                              
## 3088                                                                                                              
## 3089                                                                                                              
## 3090                                                                                                              
## 3091                                                                                                              
## 3092                                                                                                              
## 3093                                                                                                              
## 3094                                                                                                     Economist
## 3095                                                                                                     Economist
## 3096                                                                                                     Economist
## 3097                                                                                                     Economist
## 3098                                                                                                     Economist
## 3099                                                                                                     Economist
## 3100                                                                                                     Economist
## 3101                                                                                                     Economist
## 3102                                                                                                              
## 3103                                                                                                              
## 3104                                                                                                              
## 3105                                                                                                              
## 3106                                                                                                              
## 3107                                                                                                              
## 3108                                                                                                      Politico
## 3109                                                                                                      Politico
## 3110                                                                                                      Politico
## 3111                                                                                                      Politico
## 3112                                                                                                              
## 3113                                                                                                           NPR
## 3114                                                                                                           NPR
## 3115                                                                                                           NPR
## 3116                                                                                                           NPR
## 3117                                                                                                              
## 3118                                                                                                              
## 3119                                                                                                              
## 3120                                                                                                              
## 3121                                                                                                     Economist
## 3122                                                                                                     Economist
## 3123                                                                                                     Economist
## 3124                                                                                                     Economist
## 3125                                                                                                              
## 3126                                                                                                              
## 3127                                                                                                              
## 3128                                                                                                              
## 3129                                                                                                              
## 3130                                                                                                      ABC News
## 3131                                                                                                           CNN
## 3132                                                                                                           CNN
## 3133                                                                                                           CNN
## 3134                                                                                                           CNN
## 3135                                                                                                              
## 3136                                                                                                              
## 3137                                                                                                              
## 3138                                                                                                              
## 3139                                                                                                    Yahoo News
## 3140                                                                                                    Yahoo News
## 3141                                                                                                    Yahoo News
## 3142                                                                                                    Yahoo News
## 3143                                                                                                     Economist
## 3144                                                                                                     Economist
## 3145                                                                                                     Economist
## 3146                                                                                                     Economist
## 3147                                                                                                  Fox Business
## 3148                                                                                                  Fox Business
## 3149                                                                                                  Fox Business
## 3150                                                                                                  Fox Business
## 3151                                                                                                              
## 3152                                                                                                              
## 3153                                                                                                              
## 3154                                                                                                              
## 3155                                                                                                       Reuters
## 3156                                                                                                       Reuters
## 3157                                                                                                       Reuters
## 3158                                                                                                       Reuters
## 3159                                                                                                              
## 3160                                                                                                              
## 3161                                                                                                              
## 3162                                                                                                              
## 3163                                                                                                              
## 3164                                                                                                              
## 3165                                                                                                              
## 3166                                                                                                              
## 3167                                                                                                              
## 3168                                                                                                      Politico
## 3169                                                                                                      Politico
## 3170                                                                                                      Politico
## 3171                                                                                                      Politico
## 3172                                                                                                          CNBC
## 3173                                                                                                     Economist
## 3174                                                                                                     Economist
## 3175                                                                                                     Economist
## 3176                                                                                                     Economist
## 3177                                                                                                     USA Today
## 3178                                                                                                     USA Today
## 3179                                                                                                     USA Today
## 3180                                                                                                     USA Today
## 3181                                                                                                     Economist
## 3182                                                                                                     Economist
## 3183                                                                                                     Economist
## 3184                                                                                                     Economist
## 3185                                                                                            Winning the Issues
## 3186                                                                                                              
## 3187                                                                                                              
## 3188                                                                                                      Politico
## 3189                                                                                                      Politico
## 3190                                                                                                      Politico
## 3191                                                                                                      Politico
## 3192                                                                                                              
## 3193                                                                                                              
## 3194                                                                                                              
## 3195                                                                                                              
## 3196                                                                                                              
## 3197                                                                                                              
## 3198                                                                                                              
## 3199                                                                                                              
## 3200                                                                                                              
## 3201                                                                                                              
## 3202                                                                                                              
## 3203                                                                                                              
## 3204                                                                                                    NewsNation
## 3205                                                                                                              
## 3206                                                                                                     Economist
## 3207                                                                                                     Economist
## 3208                                                                                                     Economist
## 3209                                                                                                     Economist
## 3210                                                                                                     Economist
## 3211                                                                                                     Economist
## 3212                                                                                                     Economist
## 3213                                                                                                     Economist
## 3214                                                                                                              
## 3215                                                                                                              
## 3216                                                                                                              
## 3217                                                                                                      FOX News
## 3218                                                                                                      FOX News
## 3219                                                                                                      FOX News
## 3220                                                                                                      FOX News
## 3221                                                                                                              
## 3222                                                                                                              
## 3223                                                                                                              
## 3224                                                                                                              
## 3225                                                                                                       Harvard
## 3226                                                                                                       Harvard
## 3227                                                                                                       Harvard
## 3228                                                                                                       Harvard
## 3229                                                                                                      Politico
## 3230                                                                                                      Politico
## 3231                                                                                                      Politico
## 3232                                                                                                      Politico
## 3233                                                                                                              
## 3234                                                                                                              
## 3235                                                                                                              
## 3236                                                                                                              
## 3237                                                                                                              
## 3238                                                                                                              
## 3239                                                                                                              
## 3240                                                                                                              
## 3241                                                                                                     Economist
## 3242                                                                                                     Economist
## 3243                                                                                                     Economist
## 3244                                                                                                     Economist
## 3245                                                                                                      ABC News
## 3246                                                                                                     Economist
## 3247                                                                                                     Economist
## 3248                                                                                                     Economist
## 3249                                                                                                     Economist
## 3250                                                                                                    Yahoo News
## 3251                                                                                                    Yahoo News
## 3252                                                                                                    Yahoo News
## 3253                                                                                                    Yahoo News

Conclusion:

In order to get to a conclusion on whether president Biden’s Coronavirus approval rating is increasing or decreasing within the American public, I would combine the totals for democrats, republicans and independent respondents and add the approval and disapproval ratings. I would then plot the data in the form of a line graph and pattern of the line will correspond to the increase of decrease in approval ratings for president Biden.