Polarization Analysis of Twitter Users Using Sentiment Analysis

Size: px
Start display at page:

Download "Polarization Analysis of Twitter Users Using Sentiment Analysis"

Transcription

1 Polarization Analysis of Twitter Users Using Sentiment Analysis Nicha Nishikawa, Koichi Yamada, Izumi Suzuki, and Muneyuki Unehara {yamada, suzuki, Department of Information and Management System Engineering, Nagaoka University of Technology, Nagaoka-shi, Japan. Abstract. This work is a preliminary empirical study trying to prove a theory that people who argue on a two-side debate topic are likely to be radical, and to clarify the process of radicalization or polarization through analyzing opinions posted on twitter. Opinions in controversial topics were tracked and analyzed by means of Sentiment analysis, and the results were used to study people's sentiment, for or against, on the matters. Our preliminary results showed that people's opinions were polarized slightly over time in one of the two topics studied, but the other is not. To the best of our knowledge this is the first step to potentially analyze people's opinions in posting about controversial issue. Keywords: Text mining, sentiment analyses, polarization, twitter. 1 Introduction IT technology has been growing dramatically in this century and everyone uses the technology in his/her everyday life, from children and teenagers to adults and elders. In this modern society, the social media play a vital role to our lives. They allow anyone to create and distribute information to his/her friends and family. Social media serve the users as convenient tools of communication, but it is also considered as a powerful gear for social polarization, which seems a serious downside of them. Online news and their comments through the network sometimes cause flooding rudeness and aggression. Twitter, one of mainstream social media, is not an exception, where the unique functions of 140 characters per post and of its global reach have made it become a famous platform for discussion and argument. Twitter has proved to be the voice of people in many situations. Manufacturers can find the feedbacks of their products by collecting customers reviews [1]. People express their mind through tweets not only about the products or services, but for political and debate movement, and it has been intensely studied [2,3]. Since most opinions are available in the text format and its processing is easier than other formats, sentiment analysis has emerged as a subfield of text mining [4,5,6]. Sentiment analysis is an interdisciplinary field that has been used as an opinion recognizer, to judge, to evaluate and to classify the polarity of the given text. It is also 167

2 widely used in different domains such as marketing, politics, entertainment, etc., however as to social issues like controversial topics few research has been done. It is theoretically believed that people who are arguing on a two-side debate topic are likely to be aggressive. Previous studies related to online debate forum have focused on stance classification [7,8], which tried to determine which of the two sides the authors are taking. This paper aims to investigate and gain a better understanding of polarization in debating people and see how changes occur in their emotion as time proceeds. The rest of this paper is organized as follows. Section 2 explains the data and approaches used for this analysis. In section 3, we present the result of our study on the different data topics. Section 4 discusses observations derived from the results. Lastly, we conclude and give future direction of research in section 5. 2 Approach 2.1 Topics of Analysis We have chosen two debate topics for this study. One is Abortion, one of the most controversial topics in the United States, which has been argued hotly so far. The other is Brexit, a widely known political decision of the United Kingdom: the referendum took place in 2016 over a short time period where UK voted to leave or remain in European Union. The final result has become leaving. The difference between these topics is that the resolution has been adopted in the latter but not in the former. For these two debate topics, we collected Twitter data using Hashtag, a type of label starting from "#". We have considered each side as For and Against [7]. In #Brexit, For refers to people who agree with leaving EU, while Against refers to staying. Similarly, For in #Abortion means people who think that abortion should be legal, while Against refer to people who are concerning the embryos' right over women's choice. Twitter offers two APIs to retrieve data, REST API and Streaming API. In this work, in order to analyze changes in emotional mind over time, the historical data was necessary. So the REST API was used. Practically, we used the Twitter Search API, a part of Twitter s REST API to acquire recent tweets with the Hashtags. 2.2 Strategy of Data Collection. The objective of this paper is to analyze the Twitterers' sentiment changes associated with a topic. By using Search API, we selected only the tweets in English that contain the hashtags #Abortion and #Brexit. However, the search API has a limitation, which the search at twitter.com/search does not, that only tweets posted within the past 7 days can be searched. The number of data obtained is, of course, not enough to be analyzed. We performed historical data collection using the strategy described below. First, we identified users who tweeted regularly about the topic in the set of collected tweets, and created a list of the users. Then, each user was used as a parameters to get 168

3 his/her most recent tweets and retweets. This method allows us to get 3,200 tweets from a user's timeline. From the set of tweets, we filtered out only those with the hashtags, #Brexit and #Abortion. Consequently, we could get past tweets from many users who were interested in and discussed the topics. This strategy allowed us to get more historical tweets published before and during the event period. Using the above strategy from July to December 2016, around 100K user accounts who talked about #Brexit and 40K from #Abortion were tracked. The total of collected tweets was 1.5 million tweets, where 340K tweets were from #Abortion which range from 2009 to 2016, and 2.2M tweets were from #Brexit which range from 2013 to Preprocessing Due to the 140 characters limits, Twitter users are so likely to use slang, abbreviation and colloquialisms in their posts. So, before putting them into a classification process, the text preprocessing was applied. In normalization process, all characters were lowercased and repeated characters were replaced with a single (e.g., whyyyy -> why). In addition, because some mentions can be used to improve sentiment classifier, thus, we also converted all username and keyword to a generic tags -> username and #Abortion -> abortion). Finally, we removed additional white space, retweet flag; RT and the presence of URLs. 2.4 Sentiment strength For getting the sentiment score of a tweet, we utilized SentiWordnet, which is a lexicon dictionary developed based on WordNet [9] and is used widely in many studies of the sentiment analysis[10]. It contains WordNet synsets, which are sets of synonyms with the meaning and the part of speech (Noun, Verb, Adjective or Adverb), and are associated with the sentiment degrees of positivity, negativity and objectivity ranging from 0 to 1. The sum of the degrees is 1.0. First, the sentiment score of each word in a tweet is calculated. Given that a word ww has NN senses represented by ww jj where jj is the index of the word sense, the sentiment score of the word ww is given by equation (1): SSSSSSSSSSSSSSSSSS(ww) = NN jj=1 1 jj ssssssssss jj 1 NN jj=1 jj, (1) where ssssssssss jj = PPPPPP jj NNNNNN jj. PPPPPP jj and NNNNNN jj are the positive and negative scores of j-th sense of ww defined by the positive and negative degrees of SentiWordnet, respectively. Then, the sentiment of a tweet is given by the arithmetic average of sentiments of each word contained in the tweet. As discussed previously, FOR in our work refers to people who think positively toward the topic while AGAINST refers to the opposite side. Based on the value of equation (1), we also assigned a label to the numerical value of sentiment strength as 169

4 follows; For AGAINST opinions, we have {strong negative, < -0.5} {negative, to -0.5} {weak negative, 0 to -0.25}, for FOR opinion we have {weak positive, 0 to 0.25} {positive, 0.25 to 0.5} and {strong positive, > 0.5} and {neutral, 0} for the tweet that does not contain any sentiments. The outputs from this process were the sentiment score along with the tweet s published date. These values as well as strength labels were used later to see how change over time. Fig. 1. Average sentiment polarity of tweet for #Abortion Fig. 2. Average sentiment polarity of tweet for #Brexit 170

5 3 Preliminary result The preliminary results can be explained as follows. In order to understand a reflection of public sentiment in each side of each topic, we first calculated the average sentiment score by month of each topic and plotted as a time series. Figure 1 and 2 shows average sentiment polarity from #Abortion and #Brexit respectively. The first part of both topics shows fluctuation of polarity due to the small volume of obtained tweets. For example, in #Abortion of 2009, it amounted only 151 tweets from 16 user accounts. In this number, only 5 tweets were gathered in September 2009 and there was distinctly negative. Similarly, the peaks in #Brexit of 2013 and 2014 responded corresponding to the overall dominant polarity. It could be that Twitter is a new social media and people just getting utilize it to express and discuss their opinions publicly. To visualize the relation between For and Against in each topic, we therefore separated positive tweets from negative tweets. We have noticed that the pulse of the sentiment in a recent years was relatively stable in both #Abortion and #Brexit. As can be seen in Fig. 3 and Fig 4, both #Abortion and #Brexit has average sentiment strength about 0.4 in both positive and negative cases. Fig. 3. #Abortion Sentiment changes over time 171

6 Fig. 4. #Brexit Sentiment changes over time 4 Discussion In this paper, our focus was to study the changes in sentiment of people who gave opinions about controversial topics. By capturing data from Twitter corresponding to the related hashtags, #Abortion and #Brexit, we primarily analyzed tweets discussed about the topics and created time series graph to identify polarization of people's opinions. However, we observed that neither a long-term discussed topic like #Abortion nor a topic whose result has been obtained like #Brexit, has significant changes in sentiments recently. By considering only in 2016, we found that both topics had similar behavior. The number of tweets remained steady from the beginning of the year, then rose markedly in August, the similar pattern can be seen in Fig.5. #Abortion #Brexit Month Positive Negative Positive Negative Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec

7 Table 1. Number of positive tweets and negative tweets in 2016 separated by topic Fig. 5. No of Tweets in 2016 separated by topic In order to explain such coincidence we looked into individual tweets. Perhaps this is because the result of the Brexit referendum has been addressing abortion issues leaving the European Union is viewed as crisis of immigration for Irish woman. This seemed to cause more negative reactions for against in each topic. By calculating the ratio of Negative tweet to Positive tweets, it shows incremental trends in negative opinions. See in Fig.6 Fig. 6. Increasing of Negative tweet in 2016 In this work, we have studied one aspect of polarization. Our work was based on an assumption that people who give many opinions in two-side debate topic are likely to be aggressive. By means of sentiment analysis, we performed the primary experiment that may aid in making sense of sentiment changes in Twitter message discussed about controversial topics. We extracted the sentiment polarity for a long time debating issue in US, i.e. Abortion, and a national political decision in UK, i.e. Brexit. The experimental results of the average positive and negative sentiment polarity towards such topics did not show the clear support on the assumption, only the slight polarization was observed in one of our two topics studied. In short, the twitter users did not show any radicalization as a whole at least for the two topics studied. However, we may need to look into the data to examine the polari- 173

8 ty change of individuals as well as checking whether a small part of users have been radicalized or not. A limitation of this approach is that we need at least several hundreds of tweets a year. However, the tweets do not represent everyone who watched the debate, only those who had adopted Twitter and had chosen to respond. Measuring population sentiment from system like Twitter could not be substituted for a real poll. Having knowledge about user s background would better to see sentiment response of population biases [11] Based on these primary results, future work will focus on improving lexicon for a given topics. Also determining sentiment strength on the polarity classification. References 1. Pang, B., Lee, L., & Vaithyanathan, S. (2002, July). Thumbs up?. sentiment classification using machine learning techniques. In Proceedings of the ACL-02 conference on Empirical methods in natural language processing-volume 10 (pp ). Association for Computational Linguistics. 2. Conover, M. D., Gonçalves, B., Flammini, A., & Menczer, F. (2012). Partisan asymmetries in online political activity. EPJ Data Science, 1(1), Adamic, L. A., & Glance, N. (2005, August). The political blogosphere and the 2004 US election: divided they blog. In Proceedings of the 3rd international workshop on Link discovery (pp ). ACM. 4. Barnaghi, P., Ghaffari, P., & Breslin, J. G. (2016, March). Opinion Mining and Sentiment Polarity on Twitter and Correlation Between Events and Sentiment. In Big Data Computing Service and Applications (BigDataService), 2016 IEEE Second International Conference on (pp ). IEEE. 5. Smith, L. M., Zhu, L., Lerman, K., & Kozareva, Z. (2013, September). The role of social media in the discussion of controversial topics. In Social Computing (SocialCom), 2013 International Conference on (pp ). IEEE. 6. Gao, H., Mahmud, J., Chen, J., Nichols, J., & Zhou, M. X. (2014, May). Modeling User Attitude toward Controversial Topics in Online Social Media. In ICWSM. 7. Hasan, K. S., & Ng, V. (2013). Stance Classification of Ideological Debates: Data, Models, Features, and Constraints. In IJCNLP (pp ). 8. Thomas, M., Pang, B., & Lee, L. (2006, July). Get out the vote: Determining support or opposition from Congressional floor-debate transcripts. In Proceedings of the 2006 conference on empirical methods in natural language processing (pp ). Association for Computational Linguistics. 9. Miller, G. A., Beckwith, R., Fellbaum, C., Gross, D., & Miller, K. J. (1990). Introduction to WordNet: An on-line lexical database. International journal of lexicography, 3(4), Andrea Esuli, Fabrizio Sebastiani, "SENTIWORDNET: A Publicly Available Lexical Resource for Opinion Mining". In Proceedings of the 5th Conference on Language Resources and Evaluation (LREC 06), Pg Diakopoulos, Nicholas A., and David A. Shamma. "Characterizing debate performance via aggregated twitter sentiment." Proceedings of the SIGCHI Conference on Human Factors in Computing Systems. ACM,

Techniques for Sentiment Analysis survey

Techniques for Sentiment Analysis survey I J C T A, 9(41), 2016, pp. 355-360 International Science Press ISSN: 0974-5572 Techniques for Sentiment Analysis survey Anu Sharma* and Savleen Kaur** ABSTRACT A Sentiment analysis is a technique to analyze

More information

Sentiment Analysis. (thanks to Matt Baker)

Sentiment Analysis. (thanks to Matt Baker) Sentiment Analysis (thanks to Matt Baker) Laptop Purchase will you decide? Survey Says 81% internet users online product research 1+ times 20% internet users online product research daily 73-87% consumers

More information

Sentiment Analysis of User-Generated Contents for Pharmaceutical Product Safety

Sentiment Analysis of User-Generated Contents for Pharmaceutical Product Safety Sentiment Analysis of User-Generated Contents for Pharmaceutical Product Safety Haruna Isah, Daniel Neagu and Paul Trundle Artificial Intelligence Research Group University of Bradford, UK Haruna Isah

More information

Emotion analysis using text mining on social networks

Emotion analysis using text mining on social networks Emotion analysis using text mining on social networks Rashmi Kumari 1, Mayura Sasane 2 1 Student,M.E-CSE, Parul Institute of Technology, Limda, Vadodara, India 2 Assistance Professor, M.E-CSE, Parul Institute

More information

Latest trends in sentiment analysis - A survey

Latest trends in sentiment analysis - A survey Latest trends in sentiment analysis - A survey Anju Rose G Punneliparambil PG Scholar Department of Computer Science & Engineering Govt. Engineering College, Thrissur, India anjurose.ar@gmail.com Abstract

More information

Public Attitudes to Science 2014: Social Listening October December 2013 report

Public Attitudes to Science 2014: Social Listening October December 2013 report Public Attitudes to Science 2014: Social Listening October December 2013 report PUBLIC 1 Objectives Ipsos MORI are conducting a year long research exercise into how people talk about science. Using our

More information

Opinion Mining and Emotional Intelligence: Techniques and Methodology

Opinion Mining and Emotional Intelligence: Techniques and Methodology Opinion Mining and Emotional Intelligence: Techniques and Methodology B.Asraf yasmin 1, Dr.R.Latha 2 1 Ph.D Research Scholar, Computer Applications, St.Peter s University, Chennai. 2 Prof & Head., Dept

More information

THE CHALLENGES OF SENTIMENT ANALYSIS ON SOCIAL WEB COMMUNITIES

THE CHALLENGES OF SENTIMENT ANALYSIS ON SOCIAL WEB COMMUNITIES THE CHALLENGES OF SENTIMENT ANALYSIS ON SOCIAL WEB COMMUNITIES Osamah A.M Ghaleb 1,Anna Saro Vijendran 2 1 Ph.D Research Scholar, Department of Computer Science, Sri Ramakrishna College of Arts and Science,(India)

More information

Hence analysing the sentiments of the people are more important. Sentiment analysis is particular to a topic. I.e.,

Hence analysing the sentiments of the people are more important. Sentiment analysis is particular to a topic. I.e., ISSN: 0975-766X CODEN: IJPTFI Available Online through Research Article www.ijptonline.com SENTIMENT CLASSIFICATION ON SOCIAL NETWORK DATA I.Mohan* 1, M.Moorthi 2 Research Scholar, Anna University, Chennai.

More information

Truthy: Enabling the Study of Online Social Networks

Truthy: Enabling the Study of Online Social Networks arxiv:1212.4565v2 [cs.si] 20 Dec 2012 Karissa McKelvey Filippo Menczer Center for Complex Networks and Systems Research Indiana University Bloomington, IN, USA Truthy: Enabling the Study of Online Social

More information

Understanding the city to make it smart

Understanding the city to make it smart Understanding the city to make it smart Roberta De Michele and Marco Furini Communication and Economics Department Universty of Modena and Reggio Emilia, Reggio Emilia, 42121, Italy, marco.furini@unimore.it

More information

Developing a Semantic Content Analyzer for L Aquila Social Urban Network

Developing a Semantic Content Analyzer for L Aquila Social Urban Network Developing a Semantic Content Analyzer for L Aquila Social Urban Network Cataldo Musto 13, Giovanni Semeraro 1, Pasquale Lops 1, Marco de Gemmis 1, Fedelucio Narducci 23, Mauro Annunziato 4, Luciana Bordoni

More information

Predicting Content Virality in Social Cascade

Predicting Content Virality in Social Cascade Predicting Content Virality in Social Cascade Ming Cheung, James She, Lei Cao HKUST-NIE Social Media Lab Department of Electronic and Computer Engineering Hong Kong University of Science and Technology,

More information

Extraction and Recognition of Text From Digital English Comic Image Using Median Filter

Extraction and Recognition of Text From Digital English Comic Image Using Median Filter Extraction and Recognition of Text From Digital English Comic Image Using Median Filter S.Ranjini 1 Research Scholar,Department of Information technology Bharathiar University Coimbatore,India ranjinisengottaiyan@gmail.com

More information

Comparative Study of various Surveys on Sentiment Analysis

Comparative Study of various Surveys on Sentiment Analysis Comparative Study of various Surveys on Milanjit Kaur 1, Deepak Kumar 2. 1 Student (M.Tech Scholar), Computer Science and Engineering, Lovely Professional University, Punjab, India. 2 Assistant Professor,

More information

ISSN: (Online) Volume 2, Issue 4, April 2014 International Journal of Advance Research in Computer Science and Management Studies

ISSN: (Online) Volume 2, Issue 4, April 2014 International Journal of Advance Research in Computer Science and Management Studies ISSN: 2321-7782 (Online) Volume 2, Issue 4, April 2014 International Journal of Advance Research in Computer Science and Management Studies Research Article / Paper / Case Study Available online at: www.ijarcsms.com

More information

Exploring the New Trends of Chinese Tourists in Switzerland

Exploring the New Trends of Chinese Tourists in Switzerland Exploring the New Trends of Chinese Tourists in Switzerland Zhan Liu, HES-SO Valais-Wallis Anne Le Calvé, HES-SO Valais-Wallis Nicole Glassey Balet, HES-SO Valais-Wallis Address of corresponding author:

More information

Advanced Analytics for Intelligent Society

Advanced Analytics for Intelligent Society Advanced Analytics for Intelligent Society Nobuhiro Yugami Nobuyuki Igata Hirokazu Anai Hiroya Inakoshi Fujitsu Laboratories is analyzing and utilizing various types of data on the behavior and actions

More information

Implementation of Text to Speech Conversion

Implementation of Text to Speech Conversion Implementation of Text to Speech Conversion Chaw Su Thu Thu 1, Theingi Zin 2 1 Department of Electronic Engineering, Mandalay Technological University, Mandalay 2 Department of Electronic Engineering,

More information

Using Deep Learning for Sentiment Analysis and Opinion Mining

Using Deep Learning for Sentiment Analysis and Opinion Mining Using Deep Learning for Sentiment Analysis and Opinion Mining Gauging opinions is faster and more accurate. Abstract How does a computer analyze sentiment? How does a computer determine if a comment or

More information

KELLER REALTY WILLIAMS. Getting Started on Twitter. Brought to you by Keller Williams Realty

KELLER REALTY WILLIAMS. Getting Started on Twitter. Brought to you by Keller Williams Realty KELLER WILLIAMS REALTY 101 Getting Started on Twitter Brought to you by Keller Williams Realty What are you doing? This simple question has been the basis for the phenomenon known as Twitter. A Website

More information

Predicting Video Game Popularity With Tweets

Predicting Video Game Popularity With Tweets Predicting Video Game Popularity With Tweets Casey Cabrales (caseycab), Helen Fang (hfang9) December 10,2015 Task Definition Given a set of Twitter tweets from a given day, we want to determine the peak

More information

RECENT EMERGENT TRENDS IN SENTIMENT ANALYSIS ON BIG DATA

RECENT EMERGENT TRENDS IN SENTIMENT ANALYSIS ON BIG DATA RECENT EMERGENT TRENDS IN SENTIMENT ANALYSIS ON BIG DATA Bhupendra, Komal Varshney, Dhruv GL Bajaj Institute of technology and Management Greater Noida, UP India ABSTRACT - Sentiment analysis of social

More information

2018: Mining events opinion argumentation from raw unlabeled Twitter data using convolutional neural network

2018: Mining events opinion argumentation from raw unlabeled Twitter data using convolutional neural network LIA@CLEF 2018: Mining events opinion argumentation from raw unlabeled Twitter data using convolutional neural network Richard Dufour 1, Mickaël Rouvier 1, Alexandre Delorme 2, and Damien Malinas 2 1 LIA

More information

Mining and Estimating Users Opinion Strength in Forum Texts Regarding Governmental Decisions

Mining and Estimating Users Opinion Strength in Forum Texts Regarding Governmental Decisions Mining and Estimating Users Opinion Strength in Forum Texts Regarding Governmental Decisions George Stylios 1, Dimitrios Tsolis 2, and Dimitrios Christodoulakis 2 1 Technical Educational Institute of Ionian

More information

Rahul Misra. Keywords Opinion Mining, Sentiment Analysis, Modified k means, NLP

Rahul Misra. Keywords Opinion Mining, Sentiment Analysis, Modified k means, NLP Volume 5, Issue 8, August 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Sentiment Classification

More information

Twitter Used by Indonesian President: An Sentiment Analysis of Timeline Paulina Aliandu

Twitter Used by Indonesian President: An Sentiment Analysis of Timeline Paulina Aliandu Information Systems International Conference (ISICO), 2 4 December 2013 Twitter Used by Indonesian President: An Sentiment Analysis of Timeline Paulina Aliandu Paulina Aliandu Department of Informatics,

More information

PAS 2014 social listening Overall report: January-December 2013

PAS 2014 social listening Overall report: January-December 2013 Internal use only PAS 2014 social listening Overall report: January-December 2013 Objectives and method Ipsos MORI, on behalf of the Department for Business, Innovation and Skills, conducted a year long

More information

FORESIGHT METHOD HORIZONS. Module. Introduction to Foresight for Canada Beyond 150

FORESIGHT METHOD HORIZONS. Module. Introduction to Foresight for Canada Beyond 150 HORIZONS FORESIGHT METHOD for Canada Beyond 50 OVERVIEW Where are we in the process? What is Horizons approach to foresight? How do the foresight tools fit together for Canada Beyond 50? 2 A NEW MODEL

More information

Analysis of Data Mining Methods for Social Media

Analysis of Data Mining Methods for Social Media 65 Analysis of Data Mining Methods for Social Media Keshav S Rawat Department of Computer Science & Informatics, Central university of Himachal Pradesh Dharamshala (Himachal Pradesh) Email:Keshav79699@gmail.com

More information

Review Analyzer Analyzing Consumer Product

Review Analyzer Analyzing Consumer Product Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 5.258 IJCSMC,

More information

Exploiting the digital dividend a European approach: overview of the study for the European Commission

Exploiting the digital dividend a European approach: overview of the study for the European Commission Presentation for the Radio Spectrum Policy Group Exploiting the digital dividend a European approach: overview of the study for the European Commission Amit Nagpal, Lee Sanders, Richard Marsden, Gerry

More information

REPORT ON THE EUROSTAT 2017 USER SATISFACTION SURVEY

REPORT ON THE EUROSTAT 2017 USER SATISFACTION SURVEY EUROPEAN COMMISSION EUROSTAT Directorate A: Cooperation in the European Statistical System; international cooperation; resources Unit A2: Strategy and Planning REPORT ON THE EUROSTAT 2017 USER SATISFACTION

More information

Twitter Tips for small business by Trudy Thompson

Twitter Tips for small business by Trudy Thompson Twitter Tips for small business by Trudy Thompson Apart from spending my time tweeting, I also do this Bricks and Bread Sustainable Living Centre A business incubator hub for small businesses collaborating

More information

Software as a Medical Device (SaMD)

Software as a Medical Device (SaMD) Software as a Medical Device () Working Group Status Application of Clinical Evaluation Working Group Chair: Bakul Patel Center for Devices and Radiological Health US Food and Drug Administration NWIE

More information

Exploring the Political Agenda of the Greek Parliament Plenary Sessions

Exploring the Political Agenda of the Greek Parliament Plenary Sessions Exploring the Political Agenda of the Greek Parliament Plenary Sessions Dimitris Gkoumas, Maria Pontiki, Konstantina Papanikolaou, and Haris Papageorgiou ATHENA Research & Innovation Centre/Institute for

More information

CUOMO TOPS de BLASIO 4-1 AS TOP DEM IN NEW YORK, QUINNIPIAC UNIVERSITY POLL FINDS; CLINTON OR CUOMO STOMP GOP IN STATE IN 2016 RACE

CUOMO TOPS de BLASIO 4-1 AS TOP DEM IN NEW YORK, QUINNIPIAC UNIVERSITY POLL FINDS; CLINTON OR CUOMO STOMP GOP IN STATE IN 2016 RACE Maurice Carroll, Assistant Director, Quinnipiac University Poll (203) 582-5334 Rubenstein Associates, Inc. Public Relations Contact: Pat Smith (212) 843-8026 FOR RELEASE: DECEMBER 23, 2014 CUOMO TOPS de

More information

A Method for Web Content Extraction and Analysis in the Tourism Domain

A Method for Web Content Extraction and Analysis in the Tourism Domain A Method for Web Content Extraction and Analysis in the Tourism Domain Ermelinda Oro 1,2 and Massimo Ruffolo 1,2 1 National Research Council (CNR), Via P. Bucci 41/C, 87036, Rende (CS), Italy 2 Altilia

More information

On the challenges of cross-national comparative research of NLP

On the challenges of cross-national comparative research of NLP CLARIN-PLUS workshop Creation and Use of Social Media Resources Kaunas Hotel, Lithuania, 18-19 May 2017 On the challenges of cross-national comparative research of NLP Jiyoung Ydun Kim PhD student Anja

More information

CSE - Annual Research Review. From Informal WinWin Agreements to Formalized Requirements

CSE - Annual Research Review. From Informal WinWin Agreements to Formalized Requirements CSE - Annual Research Review From Informal WinWin Agreements to Formalized Requirements Hasan Kitapci hkitapci@cse.usc.edu March 15, 2005 Introduction Overview EasyWinWin Requirements Negotiation and Requirements

More information

Comment on Providing Information Promotes Greater Public Support for Potable

Comment on Providing Information Promotes Greater Public Support for Potable Comment on Providing Information Promotes Greater Public Support for Potable Recycled Water by Fielding, K.S. and Roiko, A.H., 2014 [Water Research 61, 86-96] Willem de Koster [corresponding author], Associate

More information

Institute of Information Systems Hof University

Institute of Information Systems Hof University Institute of Information Systems Hof University Institute of Information Systems Hof University The institute is a competence centre for the application of information systems in companies. It is the bridge

More information

General Briefing v.1.1 February 2016 GLOBAL INTERNET POLICY OBSERVATORY

General Briefing v.1.1 February 2016 GLOBAL INTERNET POLICY OBSERVATORY General Briefing v.1.1 February 2016 GLOBAL INTERNET POLICY OBSERVATORY 1. Introduction In 2014 1 the European Commission proposed the creation of a Global Internet Policy Observatory (GIPO) as a concrete

More information

Final Long-Term Duty Cycle Report Primary Frequency Response (PFR) Duty Cycle Battery Pack: EnerDel, Channel 4 and Battery Module: A123 #5, Channel 1

Final Long-Term Duty Cycle Report Primary Frequency Response (PFR) Duty Cycle Battery Pack: EnerDel, Channel 4 and Battery Module: A123 #5, Channel 1 Final Long-Term Duty Cycle Report Primary Frequency Response (PFR) Duty Cycle Battery Pack: EnerDel, Channel 4 and Battery Module: A123 #5, Channel 1 July 2015 PREPARED FOR National Renewable Energy Laboratory

More information

Total Marks : 100 READ THE FOLLOWING DIRECTIONS CAREFULLY:

Total Marks : 100 READ THE FOLLOWING DIRECTIONS CAREFULLY: Mathematics Writing Time : 2 Hours Total Marks : 100 READ THE FOLLOWING DIRECTIONS CAREFULLY: 1. Do not write in the first fifteen minutes. This time is to be spent on reading the questions. After having

More information

The Design and Application of Public Opinion Monitoring System. Hongfei Long

The Design and Application of Public Opinion Monitoring System. Hongfei Long 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 2016) The Design and Application of Public Opinion Monitoring System Hongfei Long College of Marxism,

More information

Can we better support and motivate scientists to deliver impact? Looking at the role of research evaluation and metrics. Áine Regan & Maeve Henchion

Can we better support and motivate scientists to deliver impact? Looking at the role of research evaluation and metrics. Áine Regan & Maeve Henchion Can we better support and motivate scientists to deliver impact? Looking at the role of research evaluation and metrics Áine Regan & Maeve Henchion 27 th Feb 2018 Teagasc, Ashtown Ensuring the Continued

More information

The University of Sheffield Research Ethics Policy Note no. 14 RESEARCH INVOLVING SOCIAL MEDIA DATA 1. BACKGROUND

The University of Sheffield Research Ethics Policy Note no. 14 RESEARCH INVOLVING SOCIAL MEDIA DATA 1. BACKGROUND The University of Sheffield Research Ethics Policy te no. 14 RESEARCH INVOLVING SOCIAL MEDIA DATA 1. BACKGROUND Social media are communication tools that allow users to share information and communicate

More information

Sampling. I Oct 2008

Sampling. I Oct 2008 Sampling I214 21 Oct 2008 Why the need to understand sampling? To be able to read and use intelligently information collected by others: Marketing research Large surveys, like the Pew Internet and American

More information

4) If your birthday fell on a Sunday this year, what day will it fall on next year? 5) If it is autumn now, what season will it be in 100 seasons?

4) If your birthday fell on a Sunday this year, what day will it fall on next year? 5) If it is autumn now, what season will it be in 100 seasons? Worksheet 1 - Going round in circles Most of these questions were taken from: http://nrich.maths.org/308, http://nrich.maths.org/6651 and http://nrich.maths.org/content/id/6651/going%20round%20in%20circles.pdf.

More information

Dynamic Analysis of Electronic Devices' Power Signatures

Dynamic Analysis of Electronic Devices' Power Signatures Dynamic Analysis of Electronic Devices' Power Signatures Marius Marcu Faculty of Automation and Computing Engineering Politehnica University of Timisoara Timisoara, Romania marius.marcu@cs.upt.ro Cosmin

More information

A Study of Emergent Norm Formation in Online Crowds

A Study of Emergent Norm Formation in Online Crowds A Study of Emergent Norm Formation in Online Crowds Nargess Tahmasbi University of Nebraska at Omaha narjestahmasbi@unomaha.edu Emergent Research Forum papers Gert-Jan de Vreede University of Nebraska

More information

We encourage you to print this booklet for easy reading. Blogging for Beginners 1

We encourage you to print this booklet for easy reading. Blogging for Beginners 1 We have strived to be as accurate and complete as possible in this report. Due to the rapidly changing nature of the Internet the contents are not warranted to be accurate. While all attempts have been

More information

Framework for Participative and Collaborative Governance using Social Media Mining Techniques

Framework for Participative and Collaborative Governance using Social Media Mining Techniques Framework for Participative and Collaborative Governance using Mining Techniques Nazura Javed Research Scholar Bangalore University Bangalore, India Muralidhara B.L. Bangalore University Bangalore, India

More information

Understanding Social Computing: Challenges and Opportunities for Europe

Understanding Social Computing: Challenges and Opportunities for Europe IRIS Major Findings Workshop on: Socio-economic implications of Digital Identity and Social Computing JRC IPTS, Information Society Unit Brussels, 12-13 th November 2009 Understanding Social Computing:

More information

CATEGORY REPORT AUGUST 2018 COVERING 30 MAIN CATEGORIES

CATEGORY REPORT AUGUST 2018 COVERING 30 MAIN CATEGORIES Kindle ebook Market Intelligence CATEGORY REPORT AUGUST 2018 COVERING 30 MAIN CATEGORIES X #### #REF! Data per 31 July 2018 Copyright 2018 K-lytics.com Note: Ø = average Evaluating the 30 Amazon Kindle

More information

Communication Engineering Prof. Surendra Prasad Department of Electrical Engineering Indian Institute of Technology, Delhi

Communication Engineering Prof. Surendra Prasad Department of Electrical Engineering Indian Institute of Technology, Delhi Communication Engineering Prof. Surendra Prasad Department of Electrical Engineering Indian Institute of Technology, Delhi Lecture - 16 Angle Modulation (Contd.) We will continue our discussion on Angle

More information

Proposing an Education System to Judge the Necessity of Nuclear Power in Japan

Proposing an Education System to Judge the Necessity of Nuclear Power in Japan Proposing an Education System to Judge the Necessity of Nuclear Power in Japan Ariyoshi Kusumi School of International Liberal studies,chukyo University Nagoya-Shi,Aichi,JAPAN ABSTRACT In environmental

More information

AR Tamagotchi : Animate Everything Around Us

AR Tamagotchi : Animate Everything Around Us AR Tamagotchi : Animate Everything Around Us Byung-Hwa Park i-lab, Pohang University of Science and Technology (POSTECH), Pohang, South Korea pbh0616@postech.ac.kr Se-Young Oh Dept. of Electrical Engineering,

More information

Summer Assignment for AP Environmental Science

Summer Assignment for AP Environmental Science Summer Assignment for AP Environmental Science 1. Reading Writing Critically about Environmental Science Issues Read The Ghost Map and write a paper in which you focus on: How the water supply and delivery

More information

LAB #5: GETTING STARTED WITH SOCIAL MEDIA. ERIKA DEBLASI, CRC President

LAB #5: GETTING STARTED WITH SOCIAL MEDIA. ERIKA DEBLASI, CRC President LAB #5: GETTING STARTED WITH SOCIAL MEDIA ERIKA DEBLASI, CRC President LAB GOALS SET UP (or dust off) your business social media accounts. UNDERSTAND how to post on each KNOW the basic Dos & Don ts for

More information

not social, spending most of one's time alone 4. a sum of money paid as a penalty or punishment 6. someone who studies and looks for answers 11.

not social, spending most of one's time alone 4. a sum of money paid as a penalty or punishment 6. someone who studies and looks for answers 11. Video Game Violence Pre-Reading A. Warm-Up Questions 1. Do you ever play video games? If so, how often? 2. Do you have children? Do they play video games, and if so, how often do they play? 3. What do

More information

Henry County Schools Fifth Grade Science Scope and Sequence. Standards and Elements

Henry County Schools Fifth Grade Science Scope and Sequence. Standards and Elements Classroom Expectations & Procedures 3 weeks Aug 3 Aug 21 Safety S5CS8. Students will understand important features of the process of scientific inquiry. Students will apply the following to inquiry learning

More information

Civic Scientific Literacy Survey in China

Civic Scientific Literacy Survey in China Journal of Scientific Temper Vol 2(3&4), Jul-Sep & Oct-Dec 2014, pp. 169-182 RESEARCH ARTICLE Civic Scientific Literacy Survey in China HE WEI, REN LEI & ZHANG CHAO Division of Scientific Literacy Research,

More information

The Kruskal Principle

The Kruskal Principle The Kruskal Principle Yutaka Nishiyama Department of Business Information, Faculty of Information Management, Osaka University of Economics, 2, Osumi Higashiyodogawa Osaka, 533-8533, Japan nishiyama@osaka-ue.ac.jp

More information

The study of human populations involves working not PART 2. Cemetery Investigation: An Exercise in Simple Statistics POPULATIONS

The study of human populations involves working not PART 2. Cemetery Investigation: An Exercise in Simple Statistics POPULATIONS PART 2 POPULATIONS Cemetery Investigation: An Exercise in Simple Statistics 4 When you have completed this exercise, you will be able to: 1. Work effectively with data that must be organized in a useful

More information

Generalizing Sentiment Analysis Techniques Across. Sub-Categories of IMDB Movie Reviews

Generalizing Sentiment Analysis Techniques Across. Sub-Categories of IMDB Movie Reviews Generalizing Sentiment Analysis Techniques Across Sub-Categories of IMDB Movie Reviews Nick Hathaway Advisor: Bob Frank Submitted to the faculty of the Department of Linguistics in partial fulfillment

More information

How to Keep Your Game on Top of The Charts

How to Keep Your Game on Top of The Charts How to Keep Your Game on Top of The Charts The story (mostly) of Doodle Jump Igor Pušenjak Lima Sky Overview Keeping a great game alive, interesting and on top of the charts takes: frequent updates communication

More information

Using Graphing Skills

Using Graphing Skills Name Class Date Laboratory Skills 8 Using Graphing Skills Introduction Recorded data can be plotted on a graph. A graph is a pictorial representation of information recorded in a data table. It is used

More information

The User Activity Reasoning Model Based on Context-Awareness in a Virtual Living Space

The User Activity Reasoning Model Based on Context-Awareness in a Virtual Living Space , pp.62-67 http://dx.doi.org/10.14257/astl.2015.86.13 The User Activity Reasoning Model Based on Context-Awareness in a Virtual Living Space Bokyoung Park, HyeonGyu Min, Green Bang and Ilju Ko Department

More information

WORKSHOP. Sara Bauer Ma, MSc. Computational Linguistics or "How your last tweet will be used against you" September 28, 2018

WORKSHOP. Sara Bauer Ma, MSc. Computational Linguistics or How your last tweet will be used against you September 28, 2018 Ma, MSc WORKSHOP Computational Linguistics or "How your last tweet will be used against you" September 28, 2018 Contents Introduction Social Media Background Practice and Examples Summary 1/20 About Me

More information

Historic Landscape Project

Historic Landscape Project Social Media Introduction Handout Why use social media? Infinite readership massive marketing potential (Even if your own Facebook page only has 40 Likes (followers), you can post something on it and ask

More information

A Framework for Polarity Classification and Emotion Mining from Text

A Framework for Polarity Classification and Emotion Mining from Text www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume - 3 Issue -8 August, 2014 Page No. 7431-7436 A Framework for Polarity Classification and Emotion Mining from

More information

Single copy license: Corporate license (multiple users): $4,375

Single copy license: Corporate license (multiple users): $4,375 mixi A case study of Japan s most successful social networking service Version 1.1, March 03, 2007 The service: mixi mixi, the #1 SNS service in Japan (more than 8 million users, 80+% market share) originally

More information

POLICY SIMULATION AND E-GOVERNANCE

POLICY SIMULATION AND E-GOVERNANCE POLICY SIMULATION AND E-GOVERNANCE Peter SONNTAGBAUER cellent AG Lassallestraße 7b, A-1020 Vienna, Austria Artis AIZSTRAUTS, Egils GINTERS, Dace AIZSTRAUTA Vidzeme University of Applied Sciences Cesu street

More information

Chris and Wes are calm professional trades people with good problem solving skills

Chris and Wes are calm professional trades people with good problem solving skills Customer Feedback Summary Of 58 customers surveyed, 45 responded Likely to Recommend 98% Problem Resolution 98% Professional & Organized 100% Quality Of Materials 98% Communication 98% Clean & Safe 98%

More information

SOCIAL MEDIA UTILIZATION FOR ISLAMIC DA WAH

SOCIAL MEDIA UTILIZATION FOR ISLAMIC DA WAH SOCIAL MEDIA UTILIZATION FOR ISLAMIC DA WAH Nur Hanis Jaafar and Siti Nur Syafiqah Umor Faculty of Information Management, Universiti Teknologi MARA (UiTM) Puncak Perdana Campus, UiTM Selangor, Malaysia

More information

Recommendation Systems UE 141 Spring 2013

Recommendation Systems UE 141 Spring 2013 Recommendation Systems UE 141 Spring 2013 Jing Gao SUNY Buffalo 1 Data Recommendation Systems users 1 3 4 3 5 5 4 5 5 3 3 2 2 2 1 items Goal Learn what a user might be interested in and recommend other

More information

Concept hierarchies and Credibility

Concept hierarchies and Credibility Jean Mark Gawron Alex Dodge Kathleen Burke August 7, 2013 1 Introduction Group studies Ontologies and concept hierarchies 2 Groups and conceptual frameworks 3 Credibility and importance 4 Tools Group studies

More information

Analysis of Competition in Chinese Automobile Industry based on an Opinion and Sentiment Mining System

Analysis of Competition in Chinese Automobile Industry based on an Opinion and Sentiment Mining System 41 Available for free online at https://ojs.hh.se/ Journal of Intelligence Studies in Business 2 (2012) 41-50 Analysis of Competition in Chinese Automobile Industry based on an Opinion and Sentiment Mining

More information

Census Response Rate, 1970 to 1990, and Projected Response Rate in 2000

Census Response Rate, 1970 to 1990, and Projected Response Rate in 2000 Figure 1.1 Census Response Rate, 1970 to 1990, and Projected Response Rate in 2000 80% 78 75% 75 Response Rate 70% 65% 65 2000 Projected 60% 61 0% 1970 1980 Census Year 1990 2000 Source: U.S. Census Bureau

More information

BusinessHaldimand.ca. Haldimand County 2018 Community Profile

BusinessHaldimand.ca. Haldimand County 2018 Community Profile BusinessHaldimand.ca Haldimand County 2018 Community Profile BusinessHaldimand.ca Haldimand County 2018 Community Profile BusinessHaldimand.ca Haldimand County 2018 Community Profile Data Sources Please

More information

Student name: Class: Date:

Student name: Class: Date: Writing a procedure Write about the goal. Write what the goal of the procedure is. This should be a short and simple sentence. List the materials and equipment. List everything you need to do the procedure.

More information

VAN BUREN COUNTY TENNESSEE

VAN BUREN COUNTY TENNESSEE VAN BUREN COUNTY TENNESSEE CONSOLIDATED LISTING OF MICROFILMED VAN BUREN COUNTY RECORDS CONSISTING OF ROLLS 1-43, 45-67 and A9296 A9328 Note: I - available through Interlibrary Loan TENNESSEE STATE LIBRARY

More information

computational social networks 5th pdf Computational Social Networks Home page Computational Social Networks SpringerLink

computational social networks 5th pdf Computational Social Networks Home page Computational Social Networks SpringerLink DOWNLOAD OR READ : COMPUTATIONAL SOCIAL NETWORKS 5TH INTERNATIONAL CONFERENCE CSONET 2016 HO CHI MINH CITY VIETNAM AUGUST 2 4 2016 PROCEEDINGS LECTURE NOTES IN COMPUTER SCIENCE PDF EBOOK EPUB MOBI Page

More information

RTÉ Player. August 2014 Review

RTÉ Player. August 2014 Review RTÉ Player August 2014 Review RTÉ Player Summary Month on Month change Streams 3,353,000-18% Unique Browsers (RTÉ.ie/Player) 627,000-13% Average Streams per Browser (RTÉ.ie/Player) 2.1-6% Page Impressions

More information

HOW TO TALK ABOUT THE EVIDENCE

HOW TO TALK ABOUT THE EVIDENCE HOW TO TALK ABOUT THE EVIDENCE You recognise how serious these allegations of wrongdoing and foul play are. But you re not sure how to explain this to your friends and family. It is absolutely vital that

More information

AGENDA. the giver's guide to greatness. the hidden DNA of the real estate business A MOTIVATIONAL MESSAGE FROM SPECIAL GUEST...

AGENDA. the giver's guide to greatness. the hidden DNA of the real estate business A MOTIVATIONAL MESSAGE FROM SPECIAL GUEST... AGENDA BRIAN BUFFINI BUFFINI & COMPANY CHAIRMAN AND FOUNDER @BrianBuffini 1 2 3 4 the giver's guide to greatness the hidden DNA of the real estate business A MOTIVATIONAL MESSAGE FROM SPECIAL GUEST...

More information

SELLING YOUR BOOKS ON AMAZON...3 GETTING STARTED...4 PUBLISHING YOUR BOOK...5 BOOK STATUS REVIEW, PUBLISHING & LIVE... 13

SELLING YOUR BOOKS ON AMAZON...3 GETTING STARTED...4 PUBLISHING YOUR BOOK...5 BOOK STATUS REVIEW, PUBLISHING & LIVE... 13 Table of Contents SELLING YOUR BOOKS ON AMAZON 3 GETTING STARTED 4 PUBLISHING YOUR BOOK 5 BOOK STATUS REVIEW, PUBLISHING & LIVE 13 THE POWER OF AUTHOR CENTRAL 15 LINKING MULTIPLE PEN NAMES 17 SECURING

More information

FY rd Quarter Financial Results

FY rd Quarter Financial Results FY2012 3 rd Quarter Financial Results April 1 December 31, 2011 KONAMI CORPORATION February 2, 2012 Cautionary statement with respect to forward-looking statements Statements made in this presentation

More information

Liangliang Cao *, Jiebo Luo +, Thomas S. Huang *

Liangliang Cao *, Jiebo Luo +, Thomas S. Huang * Annotating ti Photo Collections by Label Propagation Liangliang Cao *, Jiebo Luo +, Thomas S. Huang * + Kodak Research Laboratories *University of Illinois at Urbana-Champaign (UIUC) ACM Multimedia 2008

More information

Recreation Facility Hours

Recreation Facility Hours NORMAL HOURS Recreation Facility Hours August 1, 2016 July 31, 2017 Last Revised: July 29, 2016 Effective Dates 2016: AUG 23 31, SEP 1 2, SEP 6 16, SEP 18 23, SEP 25 30, OCT 1 7, OCT 9 18, OCT 24 30, NOV

More information

BusinessHaldimand.ca. Haldimand County 2019 Community Profile

BusinessHaldimand.ca. Haldimand County 2019 Community Profile BusinessHaldimand.ca BusinessHaldimand.ca BusinessHaldimand.ca Data Sources Please note that every effort has been made to use the most current data available. The major sources of information for this

More information

MODULE 4 CREATING SOCIAL MEDIA CONTENT

MODULE 4 CREATING SOCIAL MEDIA CONTENT MODULE 4 CREATING SOCIAL MEDIA CONTENT Introduction Hello, this is Stefan, and welcome to Module 4, Creating YouTube Videos. Types of Social Media Content There are many different types of social media

More information

BACCARAT: A LONGITUDINAL MICRO-STUDY

BACCARAT: A LONGITUDINAL MICRO-STUDY BACCARAT: A LONGITUDINAL MICRO-STUDY FIELD RESULTS FROM ONE ATLANTIC CITY CASINO, JANUARY 2004 TO JUNE 2010 CENTER FOR GAMING RESEARCH, JULY 2010 Baccarat is the most important game in the world s biggest

More information

Speech Enhancement Using Spectral Flatness Measure Based Spectral Subtraction

Speech Enhancement Using Spectral Flatness Measure Based Spectral Subtraction IOSR Journal of VLSI and Signal Processing (IOSR-JVSP) Volume 7, Issue, Ver. I (Mar. - Apr. 7), PP 4-46 e-issn: 9 4, p-issn No. : 9 497 www.iosrjournals.org Speech Enhancement Using Spectral Flatness Measure

More information

AI powering Corporate Communications

AI powering Corporate Communications AI powering Corporate Communications Media Analysis & Insights December 2018 HUMANS MEET AI Artificial intelligence (AI) is the ability of computers to understand certain aspects of the natural world,

More information

Results for the Three-Month Period Ended June 30, 2013

Results for the Three-Month Period Ended June 30, 2013 Statements made in this document with respect to SQUARE ENIX HOLDINGS CO., LTD. and its consolidated subsidiaries' (together, SQUARE ENIX GROUP") plans, estimates, strategies and beliefs are forward-looking

More information

Sentiment Visualization on Tweet Stream

Sentiment Visualization on Tweet Stream 2348 JOURNAL OF SOFTWARE, VOL. 9, NO. 9, SEPTEMBER 214 Sentiment Visualization on Tweet Stream Hua Jin College of Information Science & Technology, Agricultural University of Hebei, China Email: jinhua923@163.com

More information

B.A. Japanese Literature, Beijing Language and Culture University, China, Employment Part-time Instructor 08/ /2016

B.A. Japanese Literature, Beijing Language and Culture University, China, Employment Part-time Instructor 08/ /2016 12800 Abrams Rd Dallas, TX 75243 E-mail: jbracewell@dcccd.edu Professional Summary Accomplished language teacher and translator with fluency in English, Mandarin Chinese and Japanese. Experience supervising

More information