Twitter and Natural Disasters Peter Ney

Size: px
Start display at page:

Download "Twitter and Natural Disasters Peter Ney"

Transcription

1 Twitter and Natural Disasters Peter Ney Introduction The growing popularity of mobile computing and social media has created new opportunities to incorporate social media data into crisis response. In crisis situations such as natural disasters and mass emergencies, social media data could become a valuable source of real-time, firsthand information from affected individuals and could be used to help emergency managers and first responders efficiently assess and respond to needs. However, responders and affected people alike are unable to fully leverage this information due in part to the massive volume of noisy data, and the lack of tools and processes to help them filter and analyze these new information streams. The social media platform Twitter provides a rich public dataset of short, user created messages called tweets that arrive in real time and provide an effective model to study disruptive crisis situations. In crisis situations it is especially important to get reliable information from primary sources on the ground because they are in a unique position to find information that is not present elsewhere, and they often have knowledge about the local geography and culture [1]. One difficulty in finding reliable information on twitter is that the majority of twitter communications are derivative because they are reposts or simply repeat already known information, which makes the data more noisy [1]. Another limitation of twitter data is that posts are restricted to 140 characters which prevents the effectiveness of Natural Language Processing (NLP) techniques since most aim to derive meaning from long pieces of text. There are also problems with the scale of the data because previous crisis related Twitter studies often involve hundreds of thousands of tweets and thousands of users [2]. To get around these problems we hope to leverage Twitter metadata like the which hashtags were used, the location of the tweet, whether a tweet was retweeted, and date and time information to improve crisis response. The retweet mechanism of twitter is an especially useful way to find relevant information. Retweets with important keywords have been found to be more on-topic to the crisis situation than those that were non-retweets. This suggests that tweets are being used as a form of recommendation system [3]. It is also known that there are different retweet patterns between messages written by people at a crisis event than those that are away [3]. Other useful features include the frequency of tweets by a tweeter and the location of the original tweeter. Data and Approach

2 Professor Kate Starbird has large crisis related Twitter datasets from events such as hurricanes, tornadoes, and forest fires. Manually curating such large sets of crisis data is complex and time consuming. Therefore, our approach is to use well established data management techniques to import and structure crisis data into a relational database system. Specifically, our analysis is based on a twitter dataset taken in the few weeks surrounding the May 2011 tornado disaster in Joplin, Missouri. This dataset contains approximately 1,000,000 tweets and requires 200 MB of storage. The tweets in the data set are a subset of all tweets that contained keywords common to the event like tornado or Joplin. Twitter limits retroactive access to twitter data so the data had to be collected in real time. The raw tweets are stored in a sql file which defined a single relation to store tweet data and bulk insert statements to add the data into the single tweet relation. The raw tweet data contains 9 attributes for each tweet and include: tweet id, text, author screen name, tweet source, time of tweet, gps latitude, gps longitude, location, and location url. Next we created a normalized E/R schema to structure and store the tweet data (Figure A). Most of the useful information in the raw tweet data like hashtags, mentions, and retweets were stored in the text of the tweet. To get this information we had to do a significant amount of parsing. Any word that preceded a single # with white space in front, was considered a hashtag or mention, respectively. To parse out linked web pages from the text we filtered for website regular expressions. The main convention for retweets is Any tweets that contained this retweet pattern were considered a retweet of the mentioned user. After parsing, the cleaned data was then imported into the PosgreSQL database according to the E/R schema. Figure A: Normalized E/R schema to store cleaned tweet Information in PostgreSQL.

3 After formatting and cleaning the data we ran queries on the database to learn the overall structure of the data and to look for data features that can help determine if a given tweet or set of tweets are reliable [1]. If the database can quickly answer these queries then it can act as a model for a system used directly by first responders that will help them filter for relevant Twitter information to improve the crisis response. Results First we wanted to better understand the tweet frequency of all users in the database. For each user we plotted the number of tweets they sent and sorted the users in increasing order of number of tweets (Figure B). This query required a group by, count over user_id in the tweeted relation. Not surprisingly, the distribution is very tail heavy, with most users only sending a few tweets or less, but a small fraction of users sending hundreds of tweets. Figure B: This shows for a given user (X-axis) how many tweets that user sent (Y-axis log scale). The users were sorted in increasing order by the number of tweets they sent.

4 Since retweets act as a proxy for a recommendation we wanted to see whether some users were being retweeted much more than others. To do this we ran a query which group by, counted the retweets by user_id and then group by, counted the previous count totals. This created a histogram which binned users based on how many times their tweets were retweeted (Figure C). This is an also very heavy tailed, with most users only being retweeted a few times but a few users being retweeted thousands of times. Figure C: Histogram of number of retweeted tweets per user. Each point represents the number of users (Y-axis log scale) which have been retweeted a given number of times (X-axis log scale). Next we wanted to look at how the twitter data changed in the days following the disaster. By using a count aggregate we counted the number of tweets that were sent in the nine days following the disaster. This was plotted in a histogram, which shows an increase in activity until day 4 and then begins to decrease (Figure D). The spike in the initial three days after the disaster probably occurred due to the increase in media activity that followed the tornado. Then, to see if the types of tweets sent changed in the days after the tornado we looked at the most common hashtags one, two, and three days after the disaster (Figure E). In the first day many of the hashtags were related to helping victims like #redcross, #moneeds, and #mohaves,

5 but by the third day the hashtags were much less specific to the Joplin tornado disaster. This may indicate that tweets soonest after the disaster are more useful. Figure E: Histogram of number of tweets sent in the nine days after the tornado. Figure F: The twenty most popular hashtags one, two, and three days (left to right) following the tornado disaster. Hashtags in red were text used to filter the tweets initially, so they are not informative.

6 Finally, we wanted to see if we could find useful location information in the tweets. For all tweets that had a known city we did a group by, count to see how many tweets came from that city. We then plotted the number of tweets in each city in ascending order of number of tweets in that city. Most of the cities had only a few tweets, but many of the larger cities like New York City had many tweets. Importantly, Joplin MO, which is a relatively small town, had the third most tweets of any city. This indicates that there were many tweeters on the ground in Joplin. Figure G: The number of tweets (y-axis log scale) in each city (x-axis) in ascending order of number of tweets. Next, using GPS information we took the looked at the distance in miles each tweet was from Joplin. To do this, distance from the tweet to Joplin was approximated by using the GPS coordinates to determine the Euclidian distance. Then we plotted the distance each tweet was to Joplin in ascending order of distance (Figure H). Since this calculation made a flat earth assumption the most distance tweets have inaccurate distances, but the results work well for tweets in the United States. Not surprisingly, most of the tweets are within a few thousand miles of Joplin and mostly came from the United States.

7 Figure H: An estimate of the distance each tweet was from Joplin using GPS information. The tweets were sorted in ascending order by the distance from Joplin. All of the data processing and analysis was performed on an Asus Zenbook laptop with a SSD HD. The data import, data processing, and indexing took around 3 minutes. Each of the queries took no more than 10 seconds. Conclusions and Future Work This study shows that there are effective means to finding reliable tweet information. First the very heavy tailed distribution of the retweet information shows that there are a few number of prolific, reliable tweeters. Since the amount of retweeting is a form of recommendation strength, it is likely that these users are more reliable than average. The time-data show some important caution when collecting tweets. In the day immediately following the disaster the hashtag information showed tweets that were more on-topic than on later days. Also, because a spike in national interest happens a few days after the disaster, it may be easier to find tweeters that are on the ground in the first day since there was less tweet volume. Finally, the location data shows that there are many people tweeting on the ground in Joplin, so these users are good targets for primary sources of information.

8 There were two primary limitations of this study. First the scope of the data was limited. We only had access to tweet text information, but there is other useful metadata at the user level, like the number or types of followers. This is especially important because a change in the number of followers during a crisis has been shown to be a useful feature for predicting whether a tweeter has reliable or firsthand information. Secondly, this study took a static view of the twitter space. In a live crisis situation new tweets are constantly arriving and need to be processed in real time. We believe that this database prototype fulfilled the goals of this study. It was rapidly able to process and structure a large number of tweets and to answer queries that are relevant to first responders. Moreover, if the limitations mentioned above are addressed then we believe that the speed and usefulness of this system show that a structured database paradigm is advantageous in live crisis situations. Citations and Acknowledgements I would like to thank Professor Kate Starbird for generously giving me access to the Joplin, MO tornado disaster twitter data. [1] K. Starbird, G. Muzny, and L. Palen. Learning from the crowd: collaborative filtering techniques for identifying on-the-ground Twitterers during mass disruptions. Presented at: 9 th International ISCRAM Conference, Apr [2] L. Palen, K. M. Anderson, G. Mark, J. Martin, D. Sicker, M. Palmer, & D. Grunwald. A vision for technologymediated support for public participation & assistance in mass emergencies & disasters. In 2010 BCS Conference on Visions of Computer Science, Apr Article 8, 12 pages. [3] Starbird K. & Palen L. (2012). (How) Will the Revolution be Retweeted?: Information Propagation in the 2011 Egyptian Uprising. Proc of CSCW 2012.

Dealing with Information Overload When Using Social Media for Emergency Management: Emerging Solutions

Dealing with Information Overload When Using Social Media for Emergency Management: Emerging Solutions Dealing with Information Overload When Using Social Media for Emergency Management: Emerging Solutions Starr Roxanne Hiltz NJIT, Newark NJ Roxanne.Hiltz@gmail.com Linda Plotnick Jacksonville State U.,

More information

First Steps towards Implementing a Sahana Eden Social Media Dashboard

First Steps towards Implementing a Sahana Eden Social Media Dashboard First Steps towards Implementing a Sahana Eden Social Media Dashboard Irina Temnikova¹, Dogan Biyikli², Francis Boon³ Bulgarian Academy of Sciences¹, Independent Consultant², Sahana Software Foundation³

More information

Social Media for Supporting Emergent Groups in Crisis Management

Social Media for Supporting Emergent Groups in Crisis Management Reuter, C., Heger, O., Pipek, V. (2012): Social Media for Supporting Emergent Groups in Crisis Management. In: Proceedings of the CSCW Workshop on Collaboration and Crisis Informatics, International Reports

More information

TWITTER. Introduction to Twitter by Peter Tögel, ptogel@clemson.edu

TWITTER. Introduction to Twitter by Peter Tögel, ptogel@clemson.edu TWITTER Introduction to Twitter by Peter Tögel, ptogel@clemson.edu WHAT IS TWITTER? Twitter is a free social networking and micro-blogging service that allows its users to send and read other users updates

More information

Social Media Marketing for Local Businesses

Social Media Marketing for Local Businesses Social Media Marketing for Local Businesses The average number of hours a U.S. consumer spends on social media per week. - PQ Media, 2013 Social is the Norm A lot has changed in the 10 years since Facebook

More information

Use Excel to analyze Twitter data

Use Excel to analyze Twitter data Use Excel to analyze Twitter data Blog Post Date: May 27th, 2013 Category: Technology made easy, Social Media Author: Ulrika Hedlund Source: http://www.businessproductivity.com/use-excel-to-analyze-twitter-data

More information

Cybersecurity Analytics for a Smarter Planet

Cybersecurity Analytics for a Smarter Planet IBM Institute for Advanced Security December 2010 White Paper Cybersecurity Analytics for a Smarter Planet Enabling complex analytics with ultra-low latencies on cybersecurity data in motion 2 Cybersecurity

More information

Using information from social media for emergency management. Bert Brugghemans

Using information from social media for emergency management. Bert Brugghemans Using information from social media for emergency management Bert Brugghemans Bert Brugghemans Antwerp Fire Service Area manager Emergency manager CCO @bertbrugghemans Do we miss a lot of important information?

More information

Attributes and Objectives of Social Media. What is Social Media? Maximize Reach with Social Media

Attributes and Objectives of Social Media. What is Social Media? Maximize Reach with Social Media What is Social Media? "Social media is an innovative way of socializing where we engage in an open dialogue, tell our stories and interact with one another using online platforms. (Associated Press, 2010)

More information

Social Media and Disasters:

Social Media and Disasters: Social Media and Disasters: Best Practices and Lessons Learned Disaster Preparedness Summit, August 21, 2013 Presented by: Suzanne Bernier, CEM, CBCP, MBCI SB Crisis Consulting Toronto, Canada Outline

More information

Stakeholder Dialogue Webinar: Experience and Lessons for Young and Old Experts and Researchers. Social Networks Facebook, Twitter, etc.

Stakeholder Dialogue Webinar: Experience and Lessons for Young and Old Experts and Researchers. Social Networks Facebook, Twitter, etc. Stakeholder Dialogue Webinar: Experience and Lessons for Young and Old Experts and Researchers Social Networks Facebook, Twitter, etc. Agenda for the next 30 minutes Introduction Social media compared

More information

The Real-time Monitoring System of Social Big Data for Disaster Management

The Real-time Monitoring System of Social Big Data for Disaster Management The Real-time Monitoring System of Social Big Data for Disaster Management SEONHWA CHOI Disaster Information Research Division National Disaster Management Institute 136 Mapo-daero, Mapo-Gu, Seoul 121-719

More information

iservdb The database closest to you IDEAS Institute

iservdb The database closest to you IDEAS Institute iservdb The database closest to you IDEAS Institute 1 Overview 2 Long-term Anticipation iservdb is a relational database SQL compliance and a general purpose database Data is reliable and consistency iservdb

More information

Project Report BIG-DATA CONTENT RETRIEVAL, STORAGE AND ANALYSIS FOUNDATIONS OF DATA-INTENSIVE COMPUTING. Masters in Computer Science

Project Report BIG-DATA CONTENT RETRIEVAL, STORAGE AND ANALYSIS FOUNDATIONS OF DATA-INTENSIVE COMPUTING. Masters in Computer Science Data Intensive Computing CSE 486/586 Project Report BIG-DATA CONTENT RETRIEVAL, STORAGE AND ANALYSIS FOUNDATIONS OF DATA-INTENSIVE COMPUTING Masters in Computer Science University at Buffalo Website: http://www.acsu.buffalo.edu/~mjalimin/

More information

A Real Time Tracking and Alerting System Using LabVIEW

A Real Time Tracking and Alerting System Using LabVIEW A Real Time Tracking and Alerting System Using LabVIEW J Jyothirmai Joshi Assistant Professor, Dept. of EIE, VNR Vignan Jyothi Institute of Engineering and Technology, Hyderabad, Telangana, India ABSTRACT:

More information

Do I need anything special to use it? All you need to use Twitter is an Internet connection or a mobile phone with Internet capability.

Do I need anything special to use it? All you need to use Twitter is an Internet connection or a mobile phone with Internet capability. Twitter Guide What is Twitter? Twitter is a real-time communication platform that allows you to quickly share thoughts, opinions, and interesting links with friends, family, and the general public. People

More information

Big Data and Hadoop with Components like Flume, Pig, Hive and Jaql

Big Data and Hadoop with Components like Flume, Pig, Hive and Jaql Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 7, July 2014, pg.759

More information

Hootsuite instructions

Hootsuite instructions Hootsuite instructions Posting to Facebook Posting to Twitter Cross-posting Adding Twitter Stream Twitter Lists Twitter searches Replying and Retweeting Definitions Hootsuite video training Hootsuite is

More information

Improving Hospital Security with Integrated Two-way Radios

Improving Hospital Security with Integrated Two-way Radios Improving Hospital Security with Integrated Two-way Radios Two-way radio systems can now be leveraged in ways that weren t considered possible only a few years ago. Adopting digital radios and combining

More information

Issues in Information Systems Volume 14, Issue 2, pp.289-297, 2013

Issues in Information Systems Volume 14, Issue 2, pp.289-297, 2013 SOCIAL MEDIA WIDGET FOR EMERGENCY RESPONSE Shreeti Banerjee, Illinois State University, sbaner2@ilstu.edu Bryan Hosack, Illinois State University, bhosack@ilstu.edu Billy B. L. Lim, Illinois State University,

More information

How-To Guide: Twitter Marketing. Content Provided By

How-To Guide: Twitter Marketing. Content Provided By How-To Guide: Twitter Marketing Content Provided By About Twitter Tumblr is a free microblogging service. It is made up of 140 character bursts of information called tweets. Over 555 million users with

More information

A short guide to Twitter

A short guide to Twitter A short guide to Twitter What is Twitter? Twitter is a micro-blogging communication platform that enables users to send short messages (up to 140 characters) that can be read by anybody else on Twitter.

More information

Chorus Tweetcatcher Desktop

Chorus Tweetcatcher Desktop Chorus Tweetcatcher Desktop The purpose of this manual is to enable users of Chorus Tweetcatcher Desktop (Chorus-TCD) to begin collecting Twitter data for their projects. The document is split into two

More information

Managing Social Media in a Disaster. Jeff Baranyi Public Safety Tech Lead and Esri Disaster Response Team

Managing Social Media in a Disaster. Jeff Baranyi Public Safety Tech Lead and Esri Disaster Response Team Managing Social Media in a Disaster Jeff Baranyi Public Safety Tech Lead and Esri Disaster Response Team Esri Disaster Response Program www.esri.com/disaster Support our users, our partners and Esri personnel

More information

SOCIAL MEDIA MONITORING AND SENTIMENT ANALYSIS SYSTEM

SOCIAL MEDIA MONITORING AND SENTIMENT ANALYSIS SYSTEM Kuwait National Assembly Media Department SOCIAL MEDIA MONITORING AND SENTIMENT ANALYSIS SYSTEM Dr. Salah Alnajem Associate Professor of Computational Linguistics and Natural Language Processing, Kuwait

More information

Periscopix Paid Search Management

Periscopix Paid Search Management Periscopix Paid Search Management A bit about us Periscopix focus since inception in 2004 has always been about providing a client specific, quality PPC service; managing and guiding through all aspects

More information

Instagram Post Data Analysis

Instagram Post Data Analysis Instagram Post Data Analysis Yanling He Xin Yang Xiaoyi Zhang Abstract Because of the spread of the Internet, social platforms become big data pools. From there we can learn about the trends, culture and

More information

Improvement of Data Quality Assurance in the EIA Weekly Gasoline Prices Survey

Improvement of Data Quality Assurance in the EIA Weekly Gasoline Prices Survey Improvement of Data Quality Assurance in the EIA Weekly Gasoline Prices Survey Bin Zhang, Paula Mason, Amerine Woodyard, and Benita O Colmain Bin Zhang, EIA, 1000 Independence Ave., SW, Washington, DC

More information

INTRUSION PREVENTION AND EXPERT SYSTEMS

INTRUSION PREVENTION AND EXPERT SYSTEMS INTRUSION PREVENTION AND EXPERT SYSTEMS By Avi Chesla avic@v-secure.com Introduction Over the past few years, the market has developed new expectations from the security industry, especially from the intrusion

More information

Why you need fresh content... 2. Generate leads... 2. Retain clients... 2. Increase Conversion Rate... 2. Solutions... 3

Why you need fresh content... 2. Generate leads... 2. Retain clients... 2. Increase Conversion Rate... 2. Solutions... 3 CONTENTS Why you need fresh content... 2 Generate leads... 2 Retain clients... 2 Increase Conversion Rate... 2 Solutions... 3 1. E-mails and newsletters... 3 2. Quora.com... 4 3. Yahoo Answers... 5 4.

More information

Product Guide. Sawmill Analytics, Swindon SN4 9LZ UK sales@sawmill.co.uk tel: +44 845 250 4470

Product Guide. Sawmill Analytics, Swindon SN4 9LZ UK sales@sawmill.co.uk tel: +44 845 250 4470 Product Guide What is Sawmill Sawmill is a highly sophisticated and flexible analysis and reporting tool. It can read text log files from over 800 different sources and analyse their content. Once analyzed

More information

The big data revolution

The big data revolution The big data revolution Friso van Vollenhoven (Xebia) Enterprise NoSQL Recently, there has been a lot of buzz about the NoSQL movement, a collection of related technologies mostly concerned with storing

More information

MLg. Big Data and Its Implication to Research Methodologies and Funding. Cornelia Caragea TARDIS 2014. November 7, 2014. Machine Learning Group

MLg. Big Data and Its Implication to Research Methodologies and Funding. Cornelia Caragea TARDIS 2014. November 7, 2014. Machine Learning Group Big Data and Its Implication to Research Methodologies and Funding Cornelia Caragea TARDIS 2014 November 7, 2014 UNT Computer Science and Engineering Data Everywhere Lots of data is being collected and

More information

NWACUHO Social Media Toolkit For Beginners

NWACUHO Social Media Toolkit For Beginners NWACUHO Social Media Toolkit For Beginners Communications Taskforce Purpose: The purpose of this toolkit is to explain how social media can add value to your work, introduce you to the various social media

More information

For journalists and newsrooms

For journalists and newsrooms Twitter Best Practices For journalists and newsrooms Commonly asked questions Our followers have skyrocketed recently. What did we do right? I only have 140 characters. Why should I use a hashtag? How

More information

Social Media Quick Guide. Twitter

Social Media Quick Guide. Twitter Social Media Quick Guide Twitter Social Media Quick Guide: Twitter 2 About ChurchTechToday ChurchTechToday was born out of the need to find a place to discuss how technology can truly impact the Church

More information

ADULT DAY CARE CENTER

ADULT DAY CARE CENTER ADULT DAY CARE CENTER STATUTE RULE CRITERIA Current until changed by State Legislature or AHCA Adult Day Care Centers Statutory Reference 1 400.562, Florida Statutes Rules establishing standards. (1) The

More information

OECD.Stat Web Browser User Guide

OECD.Stat Web Browser User Guide OECD.Stat Web Browser User Guide May 2013 May 2013 1 p.10 Search by keyword across themes and datasets p.31 View and save combined queries p.11 Customise dimensions: select variables, change table layout;

More information

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1 Business Portal for Microsoft Dynamics GP 2010 User s Guide Release 5.1 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

Jitterbit Technical Overview : Salesforce

Jitterbit Technical Overview : Salesforce Jitterbit allows you to easily integrate Salesforce with any cloud, mobile or on premise application. Jitterbit s intuitive Studio delivers the easiest way of designing and running modern integrations

More information

Exploiting Social Media Data for Traffic Monitoring Using the Techniques of Data Mining

Exploiting Social Media Data for Traffic Monitoring Using the Techniques of Data Mining Exploiting Social Media Data for Traffic Monitoring Using the Techniques of Data Mining Shaikh Kamran, Musaib Shaikh, Alefiya Naseem, Priyanka Kamble B. E Student, Dept. of Computer Engineering, Trinity

More information

Architectural Implications of Social Media Analytics in Support of Crisis Informatics Research

Architectural Implications of Social Media Analytics in Support of Crisis Informatics Research Architectural Implications of Social Media Analytics in Support of Crisis Informatics Research Kenneth M. Anderson, Aaron Schram, Ali Alzabarah, Leysia Palen Project EPIC Department of Computer Science

More information

Associate Professor, Department of CSE, Shri Vishnu Engineering College for Women, Andhra Pradesh, India 2

Associate Professor, Department of CSE, Shri Vishnu Engineering College for Women, Andhra Pradesh, India 2 Volume 6, Issue 3, March 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Special Issue

More information

PERSONAL BRANDING. Natalia Untung 0142626. BARBRA Sundquist IMG 220

PERSONAL BRANDING. Natalia Untung 0142626. BARBRA Sundquist IMG 220 PERSONAL BRANDING Natalia Untung 0142626 BARBRA Sundquist IMG 220 This report documents the steps I have taken to develop my professional online reputation, as well as my plan for further strengthening

More information

Messaging & Risk Communication Presented to the NAS Workshop on Alerts and Warning on Mobile Devices

Messaging & Risk Communication Presented to the NAS Workshop on Alerts and Warning on Mobile Devices Messaging & Risk Communication Presented to the NAS Workshop on Alerts and Warning on Mobile Devices Matthew W. Seeger, Ph.D. Department of Communication Wayne State University National Center for Food

More information

Update on the Twitter Archive At the Library of Congress

Update on the Twitter Archive At the Library of Congress January 2013 Update on the Twitter Archive At the Library of Congress In April, 2010, the Library of Congress and Twitter signed an agreement providing the Library the public tweets from the company s

More information

AllegroGraph. a graph database. Gary King gwking@franz.com

AllegroGraph. a graph database. Gary King gwking@franz.com AllegroGraph a graph database Gary King gwking@franz.com Overview What we store How we store it the possibilities Using AllegroGraph Databases Put stuff in Get stuff out quickly safely Stuff things with

More information

International Journal of Advancements in Research & Technology, Volume 3, Issue 5, May-2014 18 ISSN 2278-7763. BIG DATA: A New Technology

International Journal of Advancements in Research & Technology, Volume 3, Issue 5, May-2014 18 ISSN 2278-7763. BIG DATA: A New Technology International Journal of Advancements in Research & Technology, Volume 3, Issue 5, May-2014 18 BIG DATA: A New Technology Farah DeebaHasan Student, M.Tech.(IT) Anshul Kumar Sharma Student, M.Tech.(IT)

More information

Best Practices for Hadoop Data Analysis with Tableau

Best Practices for Hadoop Data Analysis with Tableau Best Practices for Hadoop Data Analysis with Tableau September 2013 2013 Hortonworks Inc. http:// Tableau 6.1.4 introduced the ability to visualize large, complex data stored in Apache Hadoop with Hortonworks

More information

THE POWER OF INFLUENCE TAKING THE LUCK OUT OF WORD OF MOUTH

THE POWER OF INFLUENCE TAKING THE LUCK OUT OF WORD OF MOUTH THE POWER OF INFLUENCE INTRODUCTION Word-of-mouth marketing has always been a powerful driver of consumer behavior. Every experienced marketer knows that customers are more likely to base purchasing decisions

More information

SnapTrends v2.6. User Guide. www.snaptrends.com

SnapTrends v2.6. User Guide. www.snaptrends.com SnapTrends v2.6 User Guide www.snaptrends.com ABSTRACT The purpose of this document is to share best practices & describe the process for using the SnapTrends Location Based Social Listening Service STV042013

More information

How to Use the Internet to Market Your Business

How to Use the Internet to Market Your Business How to Use the Internet to Market Your Business What are your marketing goals? If you don t think Social Media marketing is powerful, just ask someone from Egypt. 89% of US internet users search online

More information

Public Opinion on OER and MOOC: A Sentiment Analysis of Twitter Data

Public Opinion on OER and MOOC: A Sentiment Analysis of Twitter Data Abeywardena, I.S. (2014). Public Opinion on OER and MOOC: A Sentiment Analysis of Twitter Data. Proceedings of the International Conference on Open and Flexible Education (ICOFE 2014), Hong Kong SAR, China.

More information

Social Media Marketing

Social Media Marketing { Social Media Marketing An Introduction for Email Marketers { Peter Ghali - Senior Product Manager This white paper provides practical advice and key strategies for beginners looking to incorporate email

More information

@ # TWITTER GETTING STARTED WITH MARKETING SALES SOCIAL MEDIA

@ # TWITTER GETTING STARTED WITH MARKETING SALES SOCIAL MEDIA @ # GETTING STARTED WITH TWITTER MARKETING SALES Venture Accelerator Partners www.vapartners.ca SOCIAL MEDIA Content Chapter 1 Introduction Chapter 2 You need to be on Twitter Chapter 3 Twitter Basics

More information

Software Engineering for Big Data. CS846 Paulo Alencar David R. Cheriton School of Computer Science University of Waterloo

Software Engineering for Big Data. CS846 Paulo Alencar David R. Cheriton School of Computer Science University of Waterloo Software Engineering for Big Data CS846 Paulo Alencar David R. Cheriton School of Computer Science University of Waterloo Big Data Big data technologies describe a new generation of technologies that aim

More information

Introducing innovation to your cemetery through digital and social media

Introducing innovation to your cemetery through digital and social media Introducing innovation to your cemetery through digital and social media Presentation to the Australasian Cemeteries and Crematoria Association 8 October 2014 Richard Rawling Principal nousgroup.com.au

More information

Google Analytics Health Check Laying the foundations for successful analytics and optimisation

Google Analytics Health Check Laying the foundations for successful analytics and optimisation Google Analytics Health Check Laying the foundations for successful analytics and optimisation Google Analytics Property [UA-1234567-1] Domain [Client URL] Date of Review MMM YYYY Consultant [Consultant

More information

Using Twitter to Increase Awareness and Participation. Justin Ramers Director of Social Media

Using Twitter to Increase Awareness and Participation. Justin Ramers Director of Social Media Using Twitter to Increase Awareness and Participation Justin Ramers Director of Social Media Agenda Twitter overview Business uses for Twitter Growing your followers Effective messaging Using 3 rd party

More information

International Journal of Advanced Engineering Research and Applications (IJAERA) ISSN: 2454-2377 Vol. 1, Issue 6, October 2015. Big Data and Hadoop

International Journal of Advanced Engineering Research and Applications (IJAERA) ISSN: 2454-2377 Vol. 1, Issue 6, October 2015. Big Data and Hadoop ISSN: 2454-2377, October 2015 Big Data and Hadoop Simmi Bagga 1 Satinder Kaur 2 1 Assistant Professor, Sant Hira Dass Kanya MahaVidyalaya, Kala Sanghian, Distt Kpt. INDIA E-mail: simmibagga12@gmail.com

More information

CLOUD COMPUTING CONCEPTS FOR ACADEMIC COLLABORATION

CLOUD COMPUTING CONCEPTS FOR ACADEMIC COLLABORATION Bulgarian Journal of Science and Education Policy (BJSEP), Volume 7, Number 1, 2013 CLOUD COMPUTING CONCEPTS FOR ACADEMIC COLLABORATION Khayrazad Kari JABBOUR Lebanese University, LEBANON Abstract. The

More information

FirstToSee: Leveraging Social Media for Emergency Response. June 21, 2013

FirstToSee: Leveraging Social Media for Emergency Response. June 21, 2013 FirstToSee: Leveraging Social Media for Emergency Response June 21, 2013 1 Overview Social media now plays a critical role in how the public communicates during an emergency. The FirstToSee Emergency Support

More information

Advanced In-Database Analytics

Advanced In-Database Analytics Advanced In-Database Analytics Tallinn, Sept. 25th, 2012 Mikko-Pekka Bertling, BDM Greenplum EMEA 1 That sounds complicated? 2 Who can tell me how best to solve this 3 What are the main mathematical functions??

More information

Don t Build the Zoo: Discover Content in its Natural Habitat Written By: Chris McKinzie CEO & Co-Founder

Don t Build the Zoo: Discover Content in its Natural Habitat Written By: Chris McKinzie CEO & Co-Founder White Paper Don t Build the Zoo: Discover Content in its Natural Habitat Written By: Chris McKinzie CEO & Co-Founder Enlyton Reinvents Search Technology for the Speed and Simplicity Enterprise Workers

More information

Boulder Creek Critical Zone Observatory Data Management Plan

Boulder Creek Critical Zone Observatory Data Management Plan Boulder Creek Critical Zone Observatory Data Management Plan Types of data The Boulder Creek Critical Zone Observatory (CZO) focuses on research in the Boulder Creek watershed. This encompasses Green Lakes

More information

A SPECIAL GUIDE. A summary of this goal will be stated here that is clarifying and inspiring

A SPECIAL GUIDE. A summary of this goal will be stated here that is clarifying and inspiring 101 A SPECIAL GUIDE The primary audience for this deck is intended to be businesses but it can be useful for anyone For a more detailed Twitter 101 and case studies, please visit business.twitter.com/twitter101

More information

A framework for Itinerary Personalization in Cultural Tourism of Smart Cities

A framework for Itinerary Personalization in Cultural Tourism of Smart Cities A framework for Itinerary Personalization in Cultural Tourism of Smart Cities Gianpaolo D Amico, Simone Ercoli, and Alberto Del Bimbo University of Florence, Media Integration and Communication Center

More information

USM Web Content Management System

USM Web Content Management System University of Southern Maine USM Web Content Management System USM Web CMS Technical Development Group 4/26/2011 Content o Introduction o Login o User Roles o Group Member o Group Publisher o Group Admin

More information

Real Time Analytics for Big Data. NtiSh Nati Shalom @natishalom

Real Time Analytics for Big Data. NtiSh Nati Shalom @natishalom Real Time Analytics for Big Data A Twitter Inspired Case Study NtiSh Nati Shalom @natishalom Big Data Predictions Overthe next few years we'll see the adoption of scalable frameworks and platforms for

More information

How To Map Human Dynamics With Social Media For Disaster Alerts

How To Map Human Dynamics With Social Media For Disaster Alerts Mapping Human Dynamics with Social Media for Disaster Alerts Dr. Ming-Hsiang Tsou mtsou@mail.sdsu.edu Professor of Geography, Director of the Center for Human Dynamics in the Mobile Age, San Diego State

More information

Data warehousing with PostgreSQL

Data warehousing with PostgreSQL Data warehousing with PostgreSQL Gabriele Bartolini http://www.2ndquadrant.it/ European PostgreSQL Day 2009 6 November, ParisTech Telecom, Paris, France Audience

More information

Bringing Social Media Interactions Into the Contact Center

Bringing Social Media Interactions Into the Contact Center Bringing Social Media Interactions Into the Contact Center By: Sheila McGee-Smith, Analyst and Founder, McGee-Smith Analytics Gone are the days of MySpace, when social media use was principally confined

More information

How To Be Successful With Social Media And Email Marketing

How To Be Successful With Social Media And Email Marketing Brought to you by: ExtremeDigitalMarketing.com B2B Social Media + Email Marketing: Rock Solid Strategies For Doing It Right! Businesses Connecting With Businesses Through The Power Of Social Media! By

More information

Empowering the Masses with Analytics

Empowering the Masses with Analytics Empowering the Masses with Analytics THE GAP FOR BUSINESS USERS For a discussion of bridging the gap from the perspective of a business user, read Three Ways to Use Data Science. Ask the average business

More information

Product Navigator User Guide

Product Navigator User Guide Product Navigator User Guide Table of Contents Contents About the Product Navigator... 1 Browser support and settings... 2 Searching in detail... 3 Simple Search... 3 Extended Search... 4 Browse By Theme...

More information

MINING DATA FROM TWITTER. Abhishanga Upadhyay Luis Mao Malavika Goda Krishna

MINING DATA FROM TWITTER. Abhishanga Upadhyay Luis Mao Malavika Goda Krishna MINING DATA FROM TWITTER Abhishanga Upadhyay Luis Mao Malavika Goda Krishna 1 Abstract The purpose of this report is to illustrate how to data mine Twitter to anyone with a computer and Internet access.

More information

Data journalism: what it can do for you

Data journalism: what it can do for you Data journalism: what it can do for you NCSWA workshop, January 12, 2013 Peter Aldhous, San Francisco Bureau Chief peter@peteraldhous.com Twitter: @paldhous From the ashes of the news industry, a phoenix?

More information

TweetAttacks Pro. User Manual

TweetAttacks Pro. User Manual TweetAttacks Pro User Manual The ultimate twitter auto follower, auto unfollower, tweet scraper, reply generator, auto retweeter, tweet spinner, mass retweeter and tweet scheduler with socialoomph integration.

More information

Strong and Weak Ties

Strong and Weak Ties Strong and Weak Ties Web Science (VU) (707.000) Elisabeth Lex KTI, TU Graz April 11, 2016 Elisabeth Lex (KTI, TU Graz) Networks April 11, 2016 1 / 66 Outline 1 Repetition 2 Strong and Weak Ties 3 General

More information

Deductive Data Warehouses and Aggregate (Derived) Tables

Deductive Data Warehouses and Aggregate (Derived) Tables Deductive Data Warehouses and Aggregate (Derived) Tables Kornelije Rabuzin, Mirko Malekovic, Mirko Cubrilo Faculty of Organization and Informatics University of Zagreb Varazdin, Croatia {kornelije.rabuzin,

More information

Is VGI Big Data? Peter Mooney and Adam C. Winstanley Department of Computer Science, Maynooth University, Co. Kildare, Ireland.

Is VGI Big Data? Peter Mooney and Adam C. Winstanley Department of Computer Science, Maynooth University, Co. Kildare, Ireland. Is VGI Big Data? Peter Mooney and Adam C. Winstanley Department of Computer Science, Maynooth University, Co. Kildare, Ireland. Summary (100 words) Volunteered Geographic Information (VGI) has become a

More information

Adobe Insight, powered by Omniture

Adobe Insight, powered by Omniture Adobe Insight, powered by Omniture Accelerating government intelligence to the speed of thought 1 Challenges that analysts face 2 Analysis tools and functionality 3 Adobe Insight 4 Summary Never before

More information

Unlocking The Value of the Deep Web. Harvesting Big Data that Google Doesn t Reach

Unlocking The Value of the Deep Web. Harvesting Big Data that Google Doesn t Reach Unlocking The Value of the Deep Web Harvesting Big Data that Google Doesn t Reach Introduction Every day, untold millions search the web with Google, Bing and other search engines. The volumes truly are

More information

6 BEST SOCIAL SELLING TECHNIQUES TO HELP YOU MOVE THE CONVERSATION NEEDLE

6 BEST SOCIAL SELLING TECHNIQUES TO HELP YOU MOVE THE CONVERSATION NEEDLE 6 BEST SOCIAL SELLING TECHNIQUES TO HELP YOU MOVE THE CONVERSATION NEEDLE Sponsored by: Follow us on: JACK KOSAKOWSKI Jack Kosakowski covers Buffer, Crowdfire App and Hootsuite. Here is his LinkedIn profile

More information

Data Refinery with Big Data Aspects

Data Refinery with Big Data Aspects International Journal of Information and Computation Technology. ISSN 0974-2239 Volume 3, Number 7 (2013), pp. 655-662 International Research Publications House http://www. irphouse.com /ijict.htm Data

More information

Real World Hadoop Use Cases

Real World Hadoop Use Cases Real World Hadoop Use Cases JFokus 2013, Stockholm Eva Andreasson, Cloudera Inc. Lars Sjödin, King.com 1 2012 Cloudera, Inc. Agenda Recap of Big Data and Hadoop Analyzing Twitter feeds with Hadoop Real

More information

Using Twitter for Business

Using Twitter for Business Using Twitter for Business The point is, Twitter can be a tremendously valuable marketing tool! In this section, we ll explain some specific usecases of Twitter for marketing. HOW TO USE TWITTER FOR MARKETING:

More information

Deloitte: delivering richer, responsive online experiences to users worldwide.

Deloitte: delivering richer, responsive online experiences to users worldwide. Deloitte: delivering richer, responsive online experiences to users worldwide. Deloitte Touche Tohmatsu Limited delivers compelling web presence to its diverse global network of member firms with Adobe

More information

Content-Based Discovery of Twitter Influencers

Content-Based Discovery of Twitter Influencers Content-Based Discovery of Twitter Influencers Chiara Francalanci, Irma Metra Department of Electronics, Information and Bioengineering Polytechnic of Milan, Italy irma.metra@mail.polimi.it chiara.francalanci@polimi.it

More information

Geodatabase Programming with SQL

Geodatabase Programming with SQL DevSummit DC February 11, 2015 Washington, DC Geodatabase Programming with SQL Craig Gillgrass Assumptions Basic knowledge of SQL and relational databases Basic knowledge of the Geodatabase We ll hold

More information

How To Analyse The Diffusion Patterns Of A Lexical Innovation In Twitter

How To Analyse The Diffusion Patterns Of A Lexical Innovation In Twitter GOOD MORNING TWEETHEARTS! : THE DIFFUSION OF A LEXICAL INNOVATION IN TWITTER REBECCA MAYBAUM (University of Haifa) Abstract The paper analyses the diffusion patterns of a community-specific lexical innovation,

More information

Location-Based Social Media Intelligence

Location-Based Social Media Intelligence Location-Based Social Media Intelligence ASIS Middle East Conference Dubai, UAE February 23, 2016 Don Zoufal CrowZnest Consulting, Inc. University of Chicago Presenter Donald R. Zoufal, C.P.P., ICAO AVSEC

More information

IFF SOCIAL MEDIA GUIDE

IFF SOCIAL MEDIA GUIDE IFF SOCIAL MEDIA GUIDE 2014 INTERNATIONAL Table of content Social Media in short:...2 Basic Social Media Guidelines...2 Social Media Use Policy in short...3 The Golden Rules of Social Marketing (Marketo)...4

More information

1.5.3 Project 3: Traffic Monitoring

1.5.3 Project 3: Traffic Monitoring 1.5.3 Project 3: Traffic Monitoring This project aims to provide helpful information about traffic in a given geographic area based on the history of traffic patterns, current weather, and time of the

More information

TWITTER 201 STRATEGIES AND BEST PRACTICES FOR USING TWITTER. Twitter 201 for Child Welfare Professionals:

TWITTER 201 STRATEGIES AND BEST PRACTICES FOR USING TWITTER. Twitter 201 for Child Welfare Professionals: TWITTER 201 Twitter 201 for Child Welfare Professionals: STRATEGIES AND BEST PRACTICES FOR USING TWITTER to Reach Foster, Adoptive, and Kinship Families Twitter 201 for Child Welfare Professionals - Page

More information

Office of Communications Social Media Handbook

Office of Communications Social Media Handbook Office of Communications Social Media Handbook Table of Contents Getting Started... 3 Before Creating an Account... 3 Creating Your Account... 3 Maintaining Your Account... 3 What Not to Post... 3 Best

More information

Microsoft 311 Service Center accelerator Demo Script

Microsoft 311 Service Center accelerator Demo Script MICROSOFT 311 SERVICE CENTER DEMO SCRIPT 1 DEMO NOTES 3 OVERVIEW 4 END USER ROLES IN THE LIFECYCLE OF A SERVICE REQUEST 4 HIGH LEVEL DEMONSTRATION FLOW 5 CITIZEN PORTAL OVERVIEW 6 CITIZEN INTERACTION WITH

More information

powerful NFL personal fan base o Could Track 2. Why Is Social o Educate people on NHRA social networking increase is 22% of NHRA fans spend day.

powerful NFL personal fan base o Could Track 2. Why Is Social o Educate people on NHRA social networking increase is 22% of NHRA fans spend day. Social Media Use 1. About Social Media a. Social media 101 It is all about storytelling. It s your opportunity to tell the story in your ownn words. o Why should racers and spectators visit your track?

More information

User research for information architecture projects

User research for information architecture projects Donna Maurer Maadmob Interaction Design http://maadmob.com.au/ Unpublished article User research provides a vital input to information architecture projects. It helps us to understand what information

More information

Twitter Guide for Adoption and Fostering

Twitter Guide for Adoption and Fostering Twitter Guide for Adoption and Fostering The Retweet or RT Allows Twitter users to share the best links, tweets, and gems they find from others using the service. To RT, highlight the tweet that you find

More information