Clinton vs. Trump 2016: Analyzing and Visualizing Tweets and Sentiments of Hillary Clinton and Donald Trump

Size: px
Start display at page:

Download "Clinton vs. Trump 2016: Analyzing and Visualizing Tweets and Sentiments of Hillary Clinton and Donald Trump"

Transcription

1 Clinton vs. Trump 2016: Analyzing and Visualizing Tweets and Sentiments of Hillary Clinton and Donald Trump ABSTRACT Siddharth Grover, Oklahoma State University, Stillwater The United States 2016 presidential campaign has seen an unprecedented amount of media coverage, numerous presidential candidates, and acrimonious debates over wide-ranging topics from candidates of both the Republican and the Democratic Party. Twitter is a dominant social medium for people to understand, express, relate and support the policies proposed by their favorite political leaders. In this paper, we analyzed the sentiment of the tweets posted by Hillary Clinton and Donald Trump on their Twitter feeds. We also analyzed the most frequent policy related keywords used by these candidates along with the Twitter handles they most frequently mentioned in their tweets. This paper demonstrates application of SAS Text Miner and SAS Sentiment Analysis Studio to perform text mining and sentiment analysis on tweets collected during the election fever. We found out that Donald Trump was more concerned with media coverage as he frequently tweeted at and mentioned media handles and used social space to negatively talk about other presidential nominees. Trump also falls short on positive sentiment and had an overall negative sentiment. Hillary Clinton, on the other hand, used the same space to discuss some of her policies and current events. Though Clinton did not show the same ability to drive the mainstream media narrative on Twitter as Trump, she did generate an overall positive sentiment. INTRODUCTION The 2016 US Presidential election has been the nation s biggest media fest for the past several months, and the media coverage is poised to increase as we near the Election Day. In this election year, Twitter has emerged as yet another battleground. How this platform is used, how both the candidates project themselves and how they are perceived by the online community will ultimately have an influence on the voters on the Election Day. This paper follows the Twitter journey of two different presidential candidates by analyzing their views and sentiments though tweets. Text mining and sentiment analysis was performed that helped in focusing on the following key points to better lay the comparison between both the candidates. Most used phrases on Twitter Which Twitter handles candidates most tweeted at Policy key words mentioned on Twitter Comparing sentiments on Clinton and Trump s tweets DATA PREPARATION We extracted about 200,000 tweets accessing the live stream API of Twitter, using a java program mytwitterscraper which is an open source real-time Twitter scraper. The timeline for the analysis was from April 2016 to June We Twitter handles and also on trending hashtags like #trump2016 and #clinton2016. We also collected information on number of followers, re-tweets and favorited tweet for both the candidates. Web Scraping (mytwitterscraper) Donald Trump Tweets (@realdonaldtrump,#trump20 16) Hillary Clinton Tweets (@hillaryclinton, #clinton2016) Figure 1. Data Preparation 1

2 METHODOLOGY Following text mining process flow was implemented - Figure 2. Text Mining Process Flow TEXT IMPORT The text from around 200,000 tweets was extracted and saved as text files using the Text Import node of SAS Enterprise Miner. This node converts different type of files into text files and saves them in the destination folder specified by the user. Many of the tweets were re-tweets and redundant, therefore removed to get a wide variety of topics for better analysis. TEXT PARSING Text mining was initiated by parsing the data to find tokens (terms), parts of speech tags, entities, etc. We ignored parts of speech, which filter prepositions, determinants, auxiliary verbs etc. along with numeric values and punctuation as these contains very less information. The term-by-frequency document matrix which is generated by this node was really helpful in understanding the frequency of terms in the text and number of documents those terms are in. Figure 3. SAS Text Parsing Node property settings and Terms Output TEXT FILTERING Text Filter node was used to reduce the number of terms by eliminating the terms with lowest frequencies in the documents. English dictionary was used to identify and correct the spell check errors. Filter viewer helps in viewing all the tweets containing a specific term and the ability to further drill down by creating concept links based on those terms. We used Text filtering node with Inverse Document Frequency as term weight property. The spell check option was helpful in removing redundant and incorrect terms. 2

3 Output 1. Text Filtering Node Spell Check output Output 2. Most Frequent Terms trough Text Filter Node CONCEPT LINKS One of the interesting functions of SAS Enterprise Miner is to create Concept Links in the Interactive Filter Viewer setting of the Text Filter Node. Concept links helps in visualizing the association between the co-occurring terms in the documents. The width of the line signifies the strength of the association between the terms. A thick line depicts strong association between the terms. We created four different concept links to understand the association between words in our data set based on frequency. We built two concept links around official Twitter accounts of both the candidates to reflect what they are talking about. We further made two more concept links around what Twitter users are talking about both the candidates. 3

4 Output 3. Official Hillary Clinton Twitter The above concept shows the association between terms in the tweets Hillary Clinton made. There is a strong relationship among the terms status, hillaryclinton, supporter and love, which might imply she tweets about her love for her supporters. Terms like campaign, money, and voter might imply asking voters to vote or donate money for her campaign. Output 4. Concept link for #hillary2016 This concept links shows the association between terms in the tweets containing hashtag #hillary2016. There s a strong relationship between the terms iamwithher and hillary, this might be due to Hillary supporters mentioning the hashtag #iamwithher and #hillary2016 together in the same tweet. Also people tweeting about #hillary2016 also might have been Donald Trump supporters or Bernie Sanders supporters as terms like trump2016 and bernieorbust are also in there. 4

5 Output 5. Official Donald Trump Twitter The concept link shows the terms mentioned in the tweets by Donald Trump. There s a strong relationship between terms foxnews, cnn, trump2016 and hillaryclinton as these might be most mentioned terms in Donald s tweets. This might imply that Trump frequently tweets at media handles and also talks about terms like American, gun, potus. Output 6. Concept link for #Trump 2016 The concept link shows association between terms in the tweets containing hashtag #trump2016. There s a strong association between terms gun, realdonaldtrump, neverhillary and hillaryclinton. This might be due to the 5

6 Trump supporters tweeting their support for Donald Trump by mentioning the term like neverhillary and hillaryclinton. Also people tweeting about #trump2016, mentioned the terms like america, want, cnn. ANALYSIS OF MOST RECENT TWEETS We further did an analysis on the most recent original 3000 tweets from both Hillary Clinton and Donald Trump. Most Frequent Words Figure 3. Most frequent words based on recent 3000 tweets Most Mentioned Twitter Handles TRUMP % CLINTON % Figure 4. Most mentioned handles in Twitter timeline 6

7 Top Policy-Focused Key Words TRUMP COUNT CLINTON COUNT Terror 133 Guns 250 Immigration 78 Health 150 Jobs 78 Taxes 83 Taxes 53 Immigration 80 Guns 13 Education 53 Education 13 Foreign 53 Health 8 Vets 28 Figure 5. Most frequently mentioned policy keywords SENTIMENT ANALYSIS We focused on performing sentiment analysis on tweets posted from official Twitter handles of both candidates - (@realdonaldtrump From the data collected for text mining, we extracted two random samples as modeling data sets with 5,000 tweets each. We further extracted two additional sets of random data sets with 2,000 tweets that would be used to test the results. We used the most recent tweets for data exploration and initial trends before diving into sentiment analytics. We built a basic Statistical model to find out the overall sentiments of the tweets. The statistical model is built from the training tweets by taking term frequencies contributing to the weights of the terms and validation data is used to finetune the model for increased accuracy. The Statistical model is able to predict the sentiment for the overall tweets but not at granular level. Feature level sentiment prediction can only be accomplished using rule-based models. The Rule-based model is more flexible and sophisticated as compared to the Statistical model. It allows to write custom rules along with the rules learned from the Statistical model. In the rule-based model to predict the sentiment of the tweets we divided the tweets into two bins - positive and negative. For this, we took a random sample of tweets from the entire dataset containing around 2,000 tweets and categorized them as either positive or negative. We only considered those tweets for modeling which were undisputedly coded as positive or negative. Finally, all of the models were scored against the test data to see how they ll hold and predict overall sentiment expressed by both candidates. MODEL TESTING The statistical model has an overall precision of 84% for Trump and 83% for Clinton whereas the rule-based model has a precision of 92% for Trump and 90% for Clinton on their respective test data sets. We ran different statistical models on the modeling data set. Smoothed Relative Frequency with Chi Square was used as criterion to build the model. The statistical model built is used to test the model accuracy on the test dataset for overall sentiments. We have used a total of 2,000 tweets of the candidates for testing the accuracy of the statistical model. 7

8 Statistical Model Results Negative Positive Overall Rule-Based Model Results Negative Positive Overall Trump 83% 85% 84% 94% 90% 92% Clinton 79% 87% 83% 85% 95% 90% Output 7. Model Testing Results Results: The rule-based model built for Trump shows 94% precision for positive sentiment and 90% precision for negative sentiment. Model built for Hillary shows 85% precision for positive sentiment and 95% precision for negative sentiment. Overall model precision for both the rule-based models is above 90%. SENTIMENTS ANALYSIS: TRUMP Overall sentiment associated to Trump is negative. Sentiment distribution is at 47% Negative, 27% Positive and 25% Neutral. Output 8. Trump Sentiment Analysis Model Output SENTIMENTS ANALYSIS: CLINTON Overall sentiment associated to Hillary is positive. Sentiment distribution is at 37% Positive, 35% Neutral and 28% Negative. Output 9. Clinton Sentiment Analysis Model Output 8

9 CONLCUSION In the world of real-time information, Twitter plays an important role in disseminating news and opinions. In order to capture the varying political views of leading presidential candidates, we performed text mining and sentiment analysis on Hillary Clinton and Donald Trump tweets in the time period from April 2016 June We created concept links to understand association between terms mentioned in the tweets by both the candidates and also the public tweets about them. We discovered that Donald Trump frequently tweeted at and mentioned media handles in his tweets and the tweets had an overall negative sentiment. Hillary Clinton on the other hand had more policy focused keywords and frequently tweeted towards the political establishment. Clinton fell short on engagement, measured through re-tweets, but generated more overall positive sentiment. REFERENCES 1. Chakraborty, Goutam, Murali Pagolu and Satish Garla. November Book Text Mining and Analysis: Practical Methods, Examples, and Case Studies Using SAS Institute. 2. SAS Institute Inc Getting Started with SAS Text Miner Cary, NC: SAS Institute Inc. 3. Analysis of Change in Sentiments towards Chick-fil-A after Dan Cathy s Statement about Same-Sex Marriage Using SAS Text Miner and SAS Sentiment Analysis Studio by Swati Grover, Jeffin Jacob and Goutam Chakraborty ACKNOWLEDGMENTS We thank WUSS 2016 conference committee for giving us an opportunity to present our work. We also thank Dr. Goutam Chakraborty for his continuous support and guidance. CONTACT INFORMATION Your comments and questions are valued and encouraged. Contact the author at: Siddharth Grover Oklahoma State University Phone: sid.grover@okstate.edu Siddharth Grover is a Master s student in Business Analytics from Oklahoma State University. He has an MBA degree in Marketing from Xavier University, India. He is working as a graduate teaching assistant at Oklahoma State University. He interned with BMO Financial Group as an AML Model Management Intern during summer 16. Earlier he worked as a Media Planner for a year at GroupM, India. He has a years experience in using SAS tools for Predictive Modeling and Data Mining. He is a Base SAS 9 certified professional, SAS Certified Advanced Programmer and SAS Certified Statistical Business Analyst. SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. indicates USA registration. Other brand and product names are trademarks of their respective companies. 9

Twitter Topic Modeling and the 2016 Presidential Campaigns

Twitter Topic Modeling and the 2016 Presidential Campaigns Twitter Topic Modeling and the 2016 Presidential Campaigns Kelsey S. O Neill and Thomas W. Miller Northwestern University School of Professional Studies July 5, 2016 Introduction Many organizations today

More information

Issues in Information Systems Volume 18, Issue 2, pp , 2017

Issues in Information Systems Volume 18, Issue 2, pp , 2017 IDENTIFYING TRENDING SENTIMENTS IN THE 2016 U.S. PRESIDENTIAL ELECTION: A CASE STUDY OF TWITTER ANALYTICS Sri Hari Deep Kolagani, MBA Student, California State University, Chico, skolagani@mail.csuchico.edu

More information

Project Presentations - 1

Project Presentations - 1 Project Presentations - 1 CMSC 498J: Social Media Computing Department of Computer Science University of Maryland Spring 2016 Hadi Amiri hadi@umd.edu Project Titles G2: Link Prediction between Candidates

More information

THE GOP DEBATES BEGIN (and other late summer 2015 findings on the presidential election conversation) September 29, 2015

THE GOP DEBATES BEGIN (and other late summer 2015 findings on the presidential election conversation) September 29, 2015 THE GOP DEBATES BEGIN (and other late summer 2015 findings on the presidential election conversation) September 29, 2015 INTRODUCTION A PEORIA Project Report Associate Professors Michael Cornfield and

More information

Big Data, information and political campaigns: an application to the 2016 US Presidential Election

Big Data, information and political campaigns: an application to the 2016 US Presidential Election Big Data, information and political campaigns: an application to the 2016 US Presidential Election Presentation largely based on Politics and Big Data: Nowcasting and Forecasting Elections with Social

More information

5 Key Facts. About Online Discussion of Immigration in the New Trump Era

5 Key Facts. About Online Discussion of Immigration in the New Trump Era 5 Key Facts About Online Discussion of Immigration in the New Trump Era Introduction As we enter the half way point of Donald s Trump s first year as president, the ripple effects of the new Administration

More information

Topline questionnaire

Topline questionnaire 47 Topline questionnaire Election 2016 Website Analysis Campaign website audit topline July 2016 Pew Research Center Post frequency Average # of original or externally produced news items posted per day

More information

Ushio: Analyzing News Media and Public Trends in Twitter

Ushio: Analyzing News Media and Public Trends in Twitter Ushio: Analyzing News Media and Public Trends in Twitter Fangzhou Yao, Kevin Chen-Chuan Chang and Roy H. Campbell 3rd International Workshop on Big Data and Social Networking Management and Security (BDSN

More information

Us and Them Adversarial Politics on Twitter

Us and Them Adversarial Politics on Twitter Us and Them Adversarial Politics on Twitter Anna Guimarães 1, Liqiang Wang 1,2, Gerhard Weikum 1 1 Max Planck Institute for Informatics, 2 Shandong University November 18, 2017 1 2 RETWEETS Donald J. Trump

More information

All The President s Tweets: l. Political Rhetoric on Social Media THAD KOUSSER AND STAN OKLOBDZIJA DEPARTMENT OF POLITICAL SCIENCE, UC SAN DIEGO

All The President s Tweets: l. Political Rhetoric on Social Media THAD KOUSSER AND STAN OKLOBDZIJA DEPARTMENT OF POLITICAL SCIENCE, UC SAN DIEGO All The President s Tweets: l Political Rhetoric on Social Media THAD KOUSSER AND STAN OKLOBDZIJA DEPARTMENT OF POLITICAL SCIENCE, UC SAN DIEGO The Twitter Election of 2016 Growth in Followers Accelerated

More information

The NRA and Gun Control ADPR 5750 Spring 2016

The NRA and Gun Control ADPR 5750 Spring 2016 The NRA and Gun Control ADPR 5750 Spring 2016 Tyler Badger, Dan Clifford, Aaron Klein, Katie Moseley Social Media Engagement & Evaluation Table of Contents Executive Summary - 3 Suggested Goals - 4 Research

More information

Survey Instrument. Florida

Survey Instrument. Florida October 23, 2016 Florida Atlantic University Poll: Clinton Poised to Take Florida in Final FAU Poll, Rubio In Strong Position in US Senate Race. Medical Marijuana Likely to Pass in Florida. The final pre-election

More information

THE ECHO: A FRIDAY TIPSHEET OF POLITICAL ACTIVITY ON TWITTER Thanks to the support of GSPM alumnus William H. Madway Class of 2013.

THE ECHO: A FRIDAY TIPSHEET OF POLITICAL ACTIVITY ON TWITTER Thanks to the support of GSPM alumnus William H. Madway Class of 2013. THE ECHO: A FRIDAY TIPSHEET OF POLITICAL ACTIVITY ON TWITTER Thanks to the support of GSPM alumnus William H. Madway Class of 2013. INSTITUTIONS POTUS 7.3m 9% Average 6.4m Republicans 2.0m 21% Average

More information

NBC News/WSJ/Marist Poll. April New York Questionnaire

NBC News/WSJ/Marist Poll. April New York Questionnaire Residents: n=2,521, MOE +/- 2.0% Registered Voters: n=1,987, MOE +/- 2.2% NBC News/WSJ/Marist Poll New York Questionnaire Potential Republican Electorate: n=477, MOE +/- 4.5% Likely Republican Primary

More information

Subject: Pinellas County Congressional Election Survey

Subject: Pinellas County Congressional Election Survey 9887 4 th St. N., Suite 200 St. Petersburg, FL 33702 Phone: (727) 245-1962 Fax: (727) 577-7470 Email: info@stpetepolls.org Website: www.stpetepolls.org Matt Florell, President Subject: Pinellas County

More information

For immediate release Monday, March 7 Contact: Dan Cassino ;

For immediate release Monday, March 7 Contact: Dan Cassino ; For immediate release Monday, March 7 Contact: Dan Cassino 973.896.7072; dcassino@fdu.edu @dancassino 7 pages Liar Clinton easily bests Arrogant Trump in NJ FAIRLEIGH DICKINSON UNIVERSITY POLL FINDS NJ

More information

Characterizing the 2016 U.S. Presidential Campaign using Twitter Data

Characterizing the 2016 U.S. Presidential Campaign using Twitter Data Characterizing the 2016 U.S. Presidential Campaign using Twitter Data Ignasi Vegas, Tina Tian Department of Computer Science Manhattan College New York, USA Wei Xiong Department of Information Systems

More information

2016 NCSU N=879

2016 NCSU N=879 Spring, 2016 NCSU Pack Poll: Big Poll Toplines Report March 13-15 N=879 Completed Response Rate= 20% Margin of sampling error for completed response rate and questions asked of the full sample +/- 3.3%

More information

Illustrating voter behavior and sentiments of registered Muslim voters in the swing states of Florida, Michigan, Ohio, Pennsylvania, and Virginia.

Illustrating voter behavior and sentiments of registered Muslim voters in the swing states of Florida, Michigan, Ohio, Pennsylvania, and Virginia. RM 2016 OR M AMERICAN MUSLIM POST-ELECTION SURVEY Illustrating voter behavior and sentiments of registered Muslim voters in the swing states of Florida, Michigan, Ohio, Pennsylvania, and Virginia. Table

More information

STAR TRIBUNE MINNESOTA POLL. April 25-27, Presidential race

STAR TRIBUNE MINNESOTA POLL. April 25-27, Presidential race STAR TRIBUNE MINNESOTA POLL April 25-27, 2016 Presidential race A total of 800 Minnesota registered voters were interviewed April 25-27. The selfidentified party affiliation of the respondents is 38 percent

More information

HOW THE POLL WAS CONDUCTED

HOW THE POLL WAS CONDUCTED The Star Tribune Minnesota Poll was conducted by Mason-Dixon Polling and Research from Jan. 18-20, 2016. Results for the questions about the presidential race were released on Sunday, Jan. 24, 2016. HOW

More information

THE GEORGE WASHINGTON BATTLEGROUND POLL

THE GEORGE WASHINGTON BATTLEGROUND POLL THE GEORGE WASHINGTON BATTLEGROUND POLL A national survey of 1,000 Registered Voters If the election for Congress were being held today, and you had to make a choice, would you be voting for the Republican

More information

Red Oak Strategic Presidential Poll

Red Oak Strategic Presidential Poll Red Oak Strategic Presidential Poll Fielded 9/1-9/2 Using Google Consumer Surveys Results, Crosstabs, and Technical Appendix 1 This document contains the full crosstab results for Red Oak Strategic s Presidential

More information

DRA NATIONAL AUDIENCE & COALITION MODELING:

DRA NATIONAL AUDIENCE & COALITION MODELING: DRA NATIONAL AUDIENCE & COALITION MODELING: Modeling & Targeting Reluctant Republicans & Disaffected Democrats in a Historic Year 2016 DEEP ROOT AUDIENCES Reluctant Republicans Hispanic Persuasion Libertarian

More information

Survey Overview. Survey date = September 29 October 1, Sample Size = 780 likely voters. Margin of Error = ± 3.51% Confidence level = 95%

Survey Overview. Survey date = September 29 October 1, Sample Size = 780 likely voters. Margin of Error = ± 3.51% Confidence level = 95% Political Consulting Public Relations Marketing Opinion Surveys Direct Mail 128 River Cove Circle St. Augustine, Florida 32086 (904) 584-2020 Survey Overview Dixie Strategies is pleased to present the

More information

THE AUTHORITY REPORT. How Audiences Find Articles, by Topic. How does the audience referral network change according to article topic?

THE AUTHORITY REPORT. How Audiences Find Articles, by Topic. How does the audience referral network change according to article topic? THE AUTHORITY REPORT REPORT PERIOD JAN. 2016 DEC. 2016 How Audiences Find Articles, by Topic For almost four years, we ve analyzed how readers find their way to the millions of articles and content we

More information

Georgia Democratic Presidential Primary Poll 2/23/16. Fox 5 Atlanta

Georgia Democratic Presidential Primary Poll 2/23/16. Fox 5 Atlanta Sponsor(s) Fox 5 Atlanta Target Population Sampling Method Georgia; likely presidential primary voters; Democrat Blended sample; mixed mode: Likely Democratic primary voters were selected at random from

More information

Who s Following Trump and Clinton?

Who s Following Trump and Clinton? Who s Following and? VS Analyzing the Twitter Followers of the 2016 Presidential Candidates. 15 June 2016 Executive Summary The Twitter followers of Donald and Hillary turn out to be more similar than

More information

The Cook Political Report / LSU Manship School Midterm Election Poll

The Cook Political Report / LSU Manship School Midterm Election Poll The Cook Political Report / LSU Manship School Midterm Election Poll The Cook Political Report-LSU Manship School poll, a national survey with an oversample of voters in the most competitive U.S. House

More information

Emerson Poll: With No Joe, Clinton Leads Sanders By Wide Margin. Trump Solidifies Support in GOP Field. Carson and Rubio Pull Away From Pack.

Emerson Poll: With No Joe, Clinton Leads Sanders By Wide Margin. Trump Solidifies Support in GOP Field. Carson and Rubio Pull Away From Pack. Emerson Poll: With No Joe, Clinton Leads Sanders By Wide Margin. Trump Solidifies Support in GOP Field. Carson and Rubio Pull Away From Pack. Boston (Oct. 19, 2015): A new poll shows former Secretary of

More information

The Digital Battleground: The Political Pulpit to Political Profile

The Digital Battleground: The Political Pulpit to Political Profile Augustana College Augustana Digital Commons Celebration of Learning The Digital Battleground: The Political Pulpit to Political Profile Shylee Garrett Augustana College, Rock Island Illinois Follow this

More information

Oregon Polling. Contact: Doug Kaplan,

Oregon Polling. Contact: Doug Kaplan, Oregon Polling Executive Summary Contact: Doug Kaplan, 407-242-1870 Gravis Marketing, a nonpartisan research firm, conducted a random survey of 770 likely voters across Oregon. The poll was conducted from

More information

Data Literacy and Voting

Data Literacy and Voting Data Literacy and Voting Martha Stuit University of Michigan Friday, July 15, 2016, 1:15 p.m. - 2:15 p.m. EST Image: Voting United States.jpg by Tom Arthur, on Wikimedia Commons. CC BY-SA 2.0. Sponsors

More information

News Consumption Patterns in American Politics

News Consumption Patterns in American Politics News Consumption Patterns in American Politics October 2015 0 Table of Contents Overview Methodology Part I: Who s following the 2016 election? 1. The Average News Consumer 2. The Politics Junkie 3. The

More information

College Voting in the 2018 Midterms: A Survey of US College Students. (Medium)

College Voting in the 2018 Midterms: A Survey of US College Students. (Medium) College Voting in the 2018 Midterms: A Survey of US College Students (Medium) 1 Overview: An online survey of 3,633 current college students was conducted using College Reaction s national polling infrastructure

More information

1 Year into the Trump Administration: Tools for the Resistance. 11:45-1:00 & 2:40-4:00, Room 320 Nathan Phillips, Nathaniel Stinnett

1 Year into the Trump Administration: Tools for the Resistance. 11:45-1:00 & 2:40-4:00, Room 320 Nathan Phillips, Nathaniel Stinnett 1 Year into the Trump Administration: Tools for the Resistance 11:45-1:00 & 2:40-4:00, Room 320 Nathan Phillips, Nathaniel Stinnett Nathan Phillips Boston University Department of Earth & Environment The

More information

VP PICKS FAVORED MORE THAN TRUMP AND CLINTON IN FAIRLEIGH DICKINSON UNIVERSITY NATIONAL POLL; RESULTS PUT CLINTON OVER TRUMP BY DOUBLE DIGITS

VP PICKS FAVORED MORE THAN TRUMP AND CLINTON IN FAIRLEIGH DICKINSON UNIVERSITY NATIONAL POLL; RESULTS PUT CLINTON OVER TRUMP BY DOUBLE DIGITS For immediate release: Wednesday, October 5, 2016 Contact: Krista Jenkins; kjenkins@fdu.edu 973.443.8390 7 pp. VP PICKS FAVORED MORE THAN TRUMP AND CLINTON IN FAIRLEIGH DICKINSON UNIVERSITY NATIONAL POLL;

More information

FAU Poll: Hispanics backing Clinton in Key Battleground States of Ohio, Colorado Nevada, North Carolina and Florida.

FAU Poll: Hispanics backing Clinton in Key Battleground States of Ohio, Colorado Nevada, North Carolina and Florida. FAU Poll: Hispanics backing Clinton in Key Battleground States of Ohio, Colorado Nevada, North Carolina and Florida. A new set of Hispanic battleground state polls by the Business and Economics Polling

More information

Marist College Institute for Public Opinion Poughkeepsie, NY Phone Fax

Marist College Institute for Public Opinion Poughkeepsie, NY Phone Fax Marist College Institute for Public Opinion Poughkeepsie, NY 12601 Phone 845.575.5050 Fax 845.575.5111 www.maristpoll.marist.edu POLL MUST BE SOURCED: McClatchy-Marist Poll* Clinton Leads Sanders by 22

More information

Pastor Views on Presidential Candidates. Survey of Protestant Pastors

Pastor Views on Presidential Candidates. Survey of Protestant Pastors Pastor Views on Presidential Candidates Survey of Protestant Pastors 2 Methodology The phone survey of Protestant pastors was conducted January 8-22, 2016 The calling list was a random sample stratified

More information

Team 1 IBM UNH

Team 1 IBM UNH Team 1 IBM Hackathon @ UNH UNH Analytics Logan Mortenson Colin Cambo Shane Piesik The Current National Election Polls ü To start our analysis we examined the current status of the presidential race. ü

More information

Likely New Hampshire Primary Voters Attitudes Toward Social Security

Likely New Hampshire Primary Voters Attitudes Toward Social Security Likely New Hampshire Primary Voters Attitudes Toward Social Security Copyright 2016 AARP AARP Research 601 E Street, NW Washington, DC 20049 Reprinting with Permission AARP is a nonprofit, nonpartisan

More information

JULY. Presidential Election. Chartbook

JULY. Presidential Election. Chartbook JULY 216 Presidential Election Chartbook 1 Bottom Line Favorability of 216 election candidates is historically low Economic and market-based indicators continue to suggest Democrat win in November, although

More information

Hillary Clinton Holds Significant Lead in Democratic Presidential Race in New Hampshire

Hillary Clinton Holds Significant Lead in Democratic Presidential Race in New Hampshire March 31, 2015 Hillary Clinton Holds Significant Lead in Democratic Presidential Race in New Hampshire By: R. Kelly Myers Marlin Fitzwater Fellow, Franklin Pierce University 603.433.3982 Portsmouth, NH.

More information

CRUZ & KASICH RUN STRONGER AGAINST CLINTON THAN TRUMP TRUMP GOP CANDIDACY COULD FLIP MISSISSIPPI FROM RED TO BLUE

CRUZ & KASICH RUN STRONGER AGAINST CLINTON THAN TRUMP TRUMP GOP CANDIDACY COULD FLIP MISSISSIPPI FROM RED TO BLUE CRUZ & KASICH RUN STRONGER AGAINST CLINTON THAN TRUMP TRUMP GOP CANDIDACY COULD FLIP MISSISSIPPI FROM RED TO BLUE If Donald Trump wins the Republican presidential nomination, Mississippi and its six electoral

More information

Google Consumer Surveys Presidential Poll Fielded 8/18-8/19

Google Consumer Surveys Presidential Poll Fielded 8/18-8/19 Google Consumer Surveys Presidential Poll Fielded 8/18-8/19 Results, Crosstabs, and Technical Appendix 1 This document contains the full crosstab results for Red Oak Strategic's Google Consumer Surveys

More information

Source institution: The Florida Southern College Center for Polling and Policy Research.

Source institution: The Florida Southern College Center for Polling and Policy Research. Source institution: The Florida Southern College Center for Polling and Policy Research. Title: Florida Presidential Primary Preference Poll For press use, the institutional source name may be shortened

More information

Alabama Republican Presidential Primary Poll 2/26/16. None

Alabama Republican Presidential Primary Poll 2/26/16. None Sponsor(s) None Target Population Sampling Method Alabama; likely presidential primary voters; Republican Likely Republican primary voters were selected at random from a list of registered voters. Only

More information

Trump and Sanders Have Big Leads in MetroNews West Virginia Poll

Trump and Sanders Have Big Leads in MetroNews West Virginia Poll Cincinnati Corporate Office 4555 Lake Forest Drive - Suite 194, Cincinnati, OH USA 45242 1-513-772-1600 1-866-545-2828 NEWS FOR RELEASE 10:15 a.m. EST February 22, 2016 For More Information, Contact: Rex

More information

Georgia Polling. Contact: Doug Kaplan,

Georgia Polling. Contact: Doug Kaplan, Georgia Polling Executive Summary Contact: Doug Kaplan, 407-242-1870 Gravis Marketing, a nonpartisan research firm, conducted a random survey of 650 likely voters across Georgia. The poll was conducted

More information

Likely Iowa Caucus Voters Attitudes Toward Social Security

Likely Iowa Caucus Voters Attitudes Toward Social Security Likely Iowa Caucus Voters Attitudes Toward Social Security Copyright 2016 AARP AARP Research 601 E Street NW Washington, DC 20049 Reprinting with Permission AARP is a nonprofit, nonpartisan organization,

More information

COSC-282 Big Data Analytics. Final Exam (Fall 2015) Dec 18, 2015 Duration: 120 minutes

COSC-282 Big Data Analytics. Final Exam (Fall 2015) Dec 18, 2015 Duration: 120 minutes Student Name: COSC-282 Big Data Analytics Final Exam (Fall 2015) Dec 18, 2015 Duration: 120 minutes Instructions: This is a closed book exam. Write your name on the first page. Answer all the questions

More information

November 2017 Toplines

November 2017 Toplines November 2017 Toplines The first of its kind bi-monthly survey of racially and ethnically diverse young adults GenForward is a survey associated with the University of Chicago Interviews: 10/26-11/10/2017

More information

CLINTON NARROWLY LEADS TRUMP IN FLORIDA -- GOP THIRD PARTY DEFECTIONS & HISPANIC VOTERS CREATING THE CURRENT GAP

CLINTON NARROWLY LEADS TRUMP IN FLORIDA -- GOP THIRD PARTY DEFECTIONS & HISPANIC VOTERS CREATING THE CURRENT GAP CLINTON NARROWLY LEADS TRUMP IN FLORIDA -- GOP THIRD PARTY DEFECTIONS & HISPANIC VOTERS CREATING THE CURRENT GAP Democratic front-runner Hillary Clinton currently holds a slight lead over Republican Donald

More information

Marist College Institute for Public Opinion Poughkeepsie, NY Phone Fax

Marist College Institute for Public Opinion Poughkeepsie, NY Phone Fax Marist College Institute for Public Opinion Poughkeepsie, NY 12601 Phone 845.575.5050 Fax 845.575.5111 www.maristpoll.marist.edu POLL MUST BE SOURCED: NBC News/Wall Street Journal/Marist Poll* Trump Leads

More information

Computational challenges in analyzing and moderating online social discussions

Computational challenges in analyzing and moderating online social discussions Computational challenges in analyzing and moderating online social discussions Aristides Gionis Department of Computer Science Aalto University Machine learning coffee seminar Oct 23, 2017 social media

More information

From Brexit to Trump: Social Media s Role in Democracy

From Brexit to Trump: Social Media s Role in Democracy COVER FEATURE OUTLOOK From Brexit to Trump: Social Media s Role in Democracy Wendy Hall, Ramine Tinati, and Will Jennings, University of Southampton The ability to share, access, and connect facts and

More information

2018 Vote Margin Narrows as Democratic Engagement Slips

2018 Vote Margin Narrows as Democratic Engagement Slips ABC NEWS/WASHINGTON POST POLL: 2018 Midterms EMBARGOED FOR RELEASE AFTER 7:00 a.m. Monday, April 16, 2018 2018 Vote Margin Narrows as Democratic Engagement Slips A Democratic advantage in the upcoming

More information

Nevada Poll Results Tarkanian 39%, Heller 31% (31% undecided) 31% would renominate Heller (51% want someone else, 18% undecided)

Nevada Poll Results Tarkanian 39%, Heller 31% (31% undecided) 31% would renominate Heller (51% want someone else, 18% undecided) Nevada Poll Results Tarkanian 39%, Heller 31% (31% undecided) 31% would renominate Heller (51% want someone else, 18% undecided) POLLING METHODOLOGY For this poll, a sample of likely Republican households

More information

UMass Lowell/7News Daily Tracking Poll of New Hampshire Voters Release 7 of 8

UMass Lowell/7News Daily Tracking Poll of New Hampshire Voters Release 7 of 8 Center for Public Opinion Dr. Joshua J. Dyck and Dr. Francis Talty, co-directors http://www.uml.edu/polls @UML_CPO UMass Lowell/7News Daily Tracking Poll of New Hampshire Voters Release 7 of 8 Survey produced

More information

Morris Central School Mock Primary Election Results April 19, 2016

Morris Central School Mock Primary Election Results April 19, 2016 Student Results Participation Breakdown by Classes Morris Central School Mock Primary Election Results April 19, 2016 149 students from grades 7-12 participated in the mock election. The table and graph

More information

Faculty Research Grant Proposal Cover Sheet DUE: November 6, 2017

Faculty Research Grant Proposal Cover Sheet DUE: November 6, 2017 Faculty Research Grant Proposal Cover Sheet DUE: November 6, 2017 Name: Chad Murphy Funding Period: Department: Political Science IRB Required Project Title: Abstract (250 words maximum) Setting the Elite

More information

2016 GOP Nominating Contest

2016 GOP Nominating Contest 2015 Texas Lyceum Poll Executive Summary 2016 Presidential Race, Job Approval & Economy A September 8-21, 2015 survey of adult Texans shows Donald Trump leading U.S. Sen. Ted Cruz 21-16, former U.S. Secretary

More information

THE WMUR GRANITE STATE POLL

THE WMUR GRANITE STATE POLL THE WMUR GRANITE STATE POLL February 29, 2016 SANDERS LEADS ALL GOP CONTENDERS IN NH, CLINTON SUPPORT VARIES BY MATCHUP By: Andrew E. Smith, Ph.D. andrew.smith@unh.edu Zachary S. Azem, M.A. 603-862-2226

More information

Who Voted for Trump in 2016?

Who Voted for Trump in 2016? Open Journal of Social Sciences, 2017, 5, 199-210 http://www.scirp.org/journal/jss ISSN Online: 2327-5960 ISSN Print: 2327-5952 Who Voted for Trump in 2016? Alexandra C. Cook, Nathan J. Hill, Mary I. Trichka,

More information

*Embargoed Until Monday, Nov. 7 th at 7am EST* The 2016 Election: A Lead for Clinton with One Day to Go November 2-6, 2016

*Embargoed Until Monday, Nov. 7 th at 7am EST* The 2016 Election: A Lead for Clinton with One Day to Go November 2-6, 2016 CBS NEWS POLL For release: Monday, November 7, 2016 7:00 am EST *Embargoed Until Monday, Nov. 7 th at 7am EST* The 2016 Election: A Lead for Clinton with One Day to Go November 2-6, 2016 With just one

More information

Toplines. UMass Amherst/WBZ Poll of NH Likely Primary Voters

Toplines. UMass Amherst/WBZ Poll of NH Likely Primary Voters Toplines UMass Amherst/WBZ Poll of NH Likely Primary Voters Field Dates: January 29 - February 2 Sample: 800 Likely Primary Voters in New Hampshire 410 Likely Democratic Primary Voters 390 Likely Republican

More information

A Majority of Likely Voters Approve of President Trump s Decisions.

A Majority of Likely Voters Approve of President Trump s Decisions. TO: FROM: SUBJECT: COMMITTEE TO DEFEND THE PRESIDENT WPA INTELLIGENCE NATIONAL SURVEY TOP QUESTIONS DATE: JULY 11, 2017 The following memorandum illustrates key findings from a national, policy focused

More information

Conducted by the University of New Hampshire Survey Center

Conducted by the University of New Hampshire Survey Center Conducted by the University of New Hampshire Survey Center Interviews with 309 adults in New Hampshire who say they plan to vote in the Democratic presidential primary conducted on June 6-10. The margin

More information

September 2017 Toplines

September 2017 Toplines The first of its kind bi-monthly survey of racially and ethnically diverse young adults Field Period: 08/31-09/16/2017 Total N: 1,816 adults Age Range: 18-34 NOTE: All results indicate percentages unless

More information

NEW JERSEY: DEM TILT IN CD07

NEW JERSEY: DEM TILT IN CD07 Please attribute this information to: Monmouth University Poll West Long Branch, NJ 07764 www.monmouth.edu/polling Follow on Twitter: @MonmouthPoll Released: Thursday, September 20, Contact: PATRICK MURRAY

More information

Obama Gains Among Former Clinton Supporters

Obama Gains Among Former Clinton Supporters September 2, 2008 Obama Gains Among Former Clinton Supporters Obama gains on other dimensions, including terrorism and leadership by Frank Newport PRINCETON, NJ -- The Democratic convention appears to

More information

CLINTON TRUMPS TRUMP WITH MAJORITY SUPPORT IN FAIRLEIGH DICKINSON UNIVERSITY PUBLICMIND POLL, BUT VOTERS DIVIDED OVER TRUMP S LOCKER ROOM TALK

CLINTON TRUMPS TRUMP WITH MAJORITY SUPPORT IN FAIRLEIGH DICKINSON UNIVERSITY PUBLICMIND POLL, BUT VOTERS DIVIDED OVER TRUMP S LOCKER ROOM TALK For immediate release: Tuesday, October 18, 2016 Contact: Krista Jenkins; kjenkins@fdu.edu 973.443.8390 6 pp. CLINTON TRUMPS TRUMP WITH MAJORITY SUPPORT IN FAIRLEIGH DICKINSON UNIVERSITY PUBLICMIND POLL,

More information

Muhlenberg College/Morning Call. Pennsylvania 15 th Congressional District Registered Voter Survey

Muhlenberg College/Morning Call. Pennsylvania 15 th Congressional District Registered Voter Survey KEY FINDINGS: Muhlenberg College/Morning Call Pennsylvania 15 th Congressional District Registered Voter Survey January/February 2018 1. As the 2018 Midterm elections approach Pennsylvania s 15 th Congressional

More information

What the 2016 Election Means to My Millennial Generation Destiny Goede

What the 2016 Election Means to My Millennial Generation Destiny Goede 2015-2016 JMI Campus Representatives What the 2016 Election Means to My Millennial Generation Destiny Goede T he 2016 election has definitely been one for the books, with nontraditional candidates bringing

More information

A Text-Analytic Approach to Campaign Dynamics

A Text-Analytic Approach to Campaign Dynamics Read, Seen or Heard A Text-Analytic Approach to Campaign Dynamics Gallup, Michigan, Georgetown Working Group: Frank Newport, Lisa Singh, Stuart Soroka, Michael Traugott, Andrew Dugan Slides presented at

More information

Civitas Institute North Carolina Statewide Poll Results November 17 19, 2018

Civitas Institute North Carolina Statewide Poll Results November 17 19, 2018 Civitas Institute North Carolina Statewide Poll Results November 17 19, 2018 Q. First, did you vote in the recent elections that took place on November 6th? Yes 100% Q. Do you feel things in the United

More information

Florida Atlantic University Poll: Clinton and Trump Poised to win Florida; Cruz and Rubio in Battle for Second.

Florida Atlantic University Poll: Clinton and Trump Poised to win Florida; Cruz and Rubio in Battle for Second. March 12, 2016 Media Contact: James Hellegaard Phone number: 561-297-3020 Florida Atlantic University Poll: Clinton and Trump Poised to win Florida; Cruz and Rubio in Battle for Second. A new Florida Atlantic

More information

Center for American Progress Action Fund Survey of the Florida Puerto Rican Electorate

Center for American Progress Action Fund Survey of the Florida Puerto Rican Electorate 1. Which of the following statements about voting in November presidential election describes you best? I will definitely vote... 84% I will probably vote, but not certain right now... 14% I definitely

More information

Christian Kabbas CO 102 PR PLAN

Christian Kabbas CO 102 PR PLAN PR PLAN Goals: Create awareness for the presidential election debate set to take place on June 20, 2016 Generate exposure for the Fairfield University name and mission on a local and national scale Objectives:

More information

RBS SAMPLING FOR EFFICIENT AND ACCURATE TARGETING OF TRUE VOTERS

RBS SAMPLING FOR EFFICIENT AND ACCURATE TARGETING OF TRUE VOTERS Dish RBS SAMPLING FOR EFFICIENT AND ACCURATE TARGETING OF TRUE VOTERS Comcast Patrick Ruffini May 19, 2017 Netflix 1 HOW CAN WE USE VOTER FILES FOR ELECTION SURVEYS? Research Synthesis TRADITIONAL LIKELY

More information

SUMMER PROJECT AP GOVERNMENT AND POLITICS ACADEMIC YEAR

SUMMER PROJECT AP GOVERNMENT AND POLITICS ACADEMIC YEAR SUMMER PROJECT AP GOVERNMENT AND POLITICS 2016 2017 ACADEMIC YEAR There are a number of goals for this summer project. First and foremost, the summer project allows us to get a head start and hit the ground

More information

Akron Buckeye Poll: Ohio Presidential Politics. Ray C. Bliss Institute of Applied Politics University of Akron. Executive Summary

Akron Buckeye Poll: Ohio Presidential Politics. Ray C. Bliss Institute of Applied Politics University of Akron. Executive Summary Akron Buckeye Poll: Ohio Presidential Politics Ray C. Bliss Institute of Applied Politics University of Akron Executive Summary The 2015 Akron Buckeye Poll investigates underlying attitudes toward the

More information

World Statistics Day Prepared by the United Nations Statistics Division

World Statistics Day Prepared by the United Nations Statistics Division Statistical Commission Forty-seventh session 8 11 March 2016 Item 4(a) of the provisional agenda Items for information: World Statistics Day Background document Available in English only World Statistics

More information

The Fourth GOP Debate: Going Beyond Mentions

The Fourth GOP Debate: Going Beyond Mentions The Fourth GOP Debate: Going Beyond Mentions Author: Andrew Guess, SMaPP Postdoctoral Researcher In our last report, we analyzed the set of tweets about the third Republican primary debate to learn about

More information

Heading into the Conventions: A Tied Race July 8-12, 2016

Heading into the Conventions: A Tied Race July 8-12, 2016 CBS NEWS/NEW YORK TIMES POLL For release: Thursday, July 14 th, 2016 7:00 am EDT Heading into the Conventions: A Tied Race July 8-12, 2016 The race for President is all tied up. Hillary Clinton led Donald

More information

Thinking back to the Presidential Election in 2016, do you recall if you supported ROTATE FIRST TWO, or someone else?

Thinking back to the Presidential Election in 2016, do you recall if you supported ROTATE FIRST TWO, or someone else? Conducted for WBUR by WBUR Poll Topline Results Survey of 501 Voters in the 2016 Presidential Election Central Massachusetts Cities and Towns Won by Donald Trump Field Dates April 7-9, 2017 Some questions

More information

GenForward March 2019 Toplines

GenForward March 2019 Toplines Toplines The first of its kind bi-monthly survey of racially and ethnically diverse young adults GenForward is a survey associated with the University of Chicago Interviews: 02/08-02/25/2019 Total N: 2,134

More information

Understanding factors that influence L1-visa outcomes in US

Understanding factors that influence L1-visa outcomes in US Understanding factors that influence L1-visa outcomes in US By Nihar Dalmia, Meghana Murthy and Nianthrini Vivekanandan Link to online course gallery : https://www.ischool.berkeley.edu/projects/2017/understanding-factors-influence-l1-work

More information

GOV. KASICH IS NUMBER ONE IN OHIO PRESIDENTIAL RACE, QUINNIPIAC UNIVERSITY POLL FINDS; CLINTON TIES OR TRAILS ALL REPUBLICANS

GOV. KASICH IS NUMBER ONE IN OHIO PRESIDENTIAL RACE, QUINNIPIAC UNIVERSITY POLL FINDS; CLINTON TIES OR TRAILS ALL REPUBLICANS Peter A. Brown, Assistant Director, Quinnipiac University Poll (203) 535-6203 Rubenstein Associates, Inc. Public Relations Contact: Pat Smith (212) 843-8026 FOR RELEASE: FEBRUARY 24, 2016 GOV. KASICH IS

More information

POLL: CLINTON MAINTAINS BIG LEAD OVER TRUMP IN BAY STATE. As early voting nears, Democrat holds 32-point advantage in presidential race

POLL: CLINTON MAINTAINS BIG LEAD OVER TRUMP IN BAY STATE. As early voting nears, Democrat holds 32-point advantage in presidential race DATE: Oct. 6, FOR FURTHER INFORMATION, CONTACT: Brian Zelasko at 413-796-2261 (office) or 413 297-8237 (cell) David Stawasz at 413-796-2026 (office) or 413-214-8001 (cell) POLL: CLINTON MAINTAINS BIG LEAD

More information

TREND REPORT: Like everything else in politics, the mood of the nation is highly polarized

TREND REPORT: Like everything else in politics, the mood of the nation is highly polarized TREND REPORT: Like everything else in politics, the mood of the nation is highly polarized Eric Plutzer and Michael Berkman May 15, 2017 As Donald Trump approaches the five-month mark in his presidency

More information

Trump Back on Top, Cruz Climbs to Second December 4-8, 2015

Trump Back on Top, Cruz Climbs to Second December 4-8, 2015 CBS NEWS/NEW YORK TIMES POLL For release: Thursday, December 10, 2015 7:00 am EST Trump Back on Top, Cruz Climbs to Second December 4-8, 2015 With his highest level of support yet in CBS News polls, Donald

More information

WBUR Poll New Hampshire 2016 General Election Survey of 501 Likely Voters Field Dates October 10-12, 2016

WBUR Poll New Hampshire 2016 General Election Survey of 501 Likely Voters Field Dates October 10-12, 2016 Conducted for WBUR by WBUR Poll New Hampshire 2016 General Election Survey of 501 Likely Voters Field Dates October 10-12, 2016 I'm going to read you the names of several people who are active in public

More information

HIGH POINT UNIVERSITY POLL MEMO RELEASE 2/15/2018 (UPDATE)

HIGH POINT UNIVERSITY POLL MEMO RELEASE 2/15/2018 (UPDATE) HIGH POINT UNIVERSITY POLL MEMO RELEASE 2/15/2018 (UPDATE) ELEMENTS Population represented Sample size Mode of data collection Type of sample (probability/nonprobability) Start and end dates of data collection

More information

Fake news on Twitter. Lisa Friedland, Kenny Joseph, Nir Grinberg, David Lazer Northeastern University

Fake news on Twitter. Lisa Friedland, Kenny Joseph, Nir Grinberg, David Lazer Northeastern University Fake news on Twitter Lisa Friedland, Kenny Joseph, Nir Grinberg, David Lazer Northeastern University Case study of a fake news pipeline Step 1: Wikileaks acquires hacked emails from John Podesta Step 2:

More information

Simulating Electoral College Results using Ranked Choice Voting if a Strong Third Party Candidate were in the Election Race

Simulating Electoral College Results using Ranked Choice Voting if a Strong Third Party Candidate were in the Election Race Simulating Electoral College Results using Ranked Choice Voting if a Strong Third Party Candidate were in the Election Race Michele L. Joyner and Nicholas J. Joyner Department of Mathematics & Statistics

More information

Clinton Leads by 13% in Michigan before Last Debate (Clinton 51% - Trump 38%- Johnson 6% - Stein 2%)

Clinton Leads by 13% in Michigan before Last Debate (Clinton 51% - Trump 38%- Johnson 6% - Stein 2%) P R E S S R E L E A S E FOR RELEASE: October 19, 2016 Contact: Steve Mitchell 248-891-2414 Clinton Leads by 13% in Michigan before Last Debate (Clinton 51% - Trump 38%- Johnson 6% - Stein 2%) EAST LANSING,

More information

NATIONAL: FAKE NEWS THREAT TO MEDIA; EDITORIAL DECISIONS, OUTSIDE ACTORS AT FAULT

NATIONAL: FAKE NEWS THREAT TO MEDIA; EDITORIAL DECISIONS, OUTSIDE ACTORS AT FAULT Please attribute this information to: Monmouth University Poll West Long Branch, NJ 07764 www.monmouth.edu/polling Follow on Twitter: @MonmouthPoll Released: Monday, April 2, 2018 Contact: PATRICK MURRAY

More information

Business Wire. At a Glance. January 13, 2015 at 9am - January 20, 2015 at 9am Page VC. 2% Positive Peak: 1 mentions on January 14th at 4pm

Business Wire. At a Glance. January 13, 2015 at 9am - January 20, 2015 at 9am Page VC. 2% Positive Peak: 1 mentions on January 14th at 4pm At a Glance This report analyzes 50 social mentions including the keywords @InterSystems Healthfirst, InterSystems Healthfirst, #InterSystems Healthfirst, health information exchange Healthfirst, HIE Platform

More information