Twitter analysis by Kaify Rais

Ajay Ohri
Ajay OhriExperienced Data Scientist

How to do analysis on Twitter Data using R language

TWITTER ANALYSIS
(IN RSTUDIO USING R PROGRAMMING LANGUAGE)

Prepared By:

KAIFY RAIS
in.linkedin.com/pub/kaify-rais/31/346/886/

1
Acknowledgement

This project is done as a final project as a part of the training course titled “Business Analytics with R”. I
am really thankful to our course instructor Mr. Ajay Ohri, Founder, DecisionStats, for giving me an
opportunity to work on the project “Twitter Analysis using R” and providing me with the necessary
support and guidance which made me complete the project on time. I am extremely grateful to him for
providing me the necessary links and material to start the project and understand the concept of Twitter
Analysis using R.
In this project “Twitter Analysis using R” , I have performed the Sentiment Analysis and Text Mining
techniques on “#Kejriwal “. This project is done in RStudio which uses the libraries of R programming
languages. I am really grateful to the resourceful articles and websites of R-project which helped me in
understanding the tool as well as the topic.
Also, I would like to extend my sincere regards to the support team of Edureka for their constant and
timely support.

2
Table of Contents
Introduction .................................................................................................................................................. 4
Limitations .................................................................................................................................................... 4
Tools and Packages used .............................................................................................................................. 5
Twitter Analysis:............................................................................................................................................ 6
Creating a Twitter Application .................................................................................................................. 6
Working on RStudio- Building the corpus ................................................................................................. 8
Saving Tweets ......................................................................................................................................... 11
Sentiment Function................................................................................................................................. 12
Scoring tweets and adding column ......................................................................................................... 13
Import the csv file ................................................................................................................................... 14
Visualizing the tweets ............................................................................................................................. 15
Analysis & Conclusion ................................................................................................................................. 16
Text Analysis ............................................................................................................................................... 17
Final code for Twitter Analysis .................................................................................................................... 19
Final code for Text Mining .......................................................................................................................... 20
References .................................................................................................................................................. 21

3
Introductions
Twitter is an amazing micro blogging tool and an extraordinary communication medium. In addition,
twitter can also be an amazing open mine for text and social web analyses. Among the different
softwares that can be used to analyze twitter, R offers a wide variety of options to do lots of interesting
and fun things. In this project I have used RStudio as its pretty much easier working with scripts as
compared to R.
According to Wikipedia, Sentiment analysis (also known as opinion mining) refers to the use of natural
language processing, text analysis and computational linguistics to identify and extract subjective
information in source materials.
Sentiment analysis, also referred to as Opinion Mining, implies extracting opinions, emotions and
sentiments in text. As you can imagine, one of the most common applications of sentiment analysis is to
track attitudes and feelings on the web, especially for tacking products, services, brands or even people.
The main idea is to determine whether they are viewed positively or negatively by a given audience.
The purpose of Text Mining is to process unstructured (textual) information, extract meaningful numeric
indices from the text, and, thus, make the information contained in the text accessible to the various
data mining algorithms. Information can be extracted to derive summaries for the words contained in
the documents or to compute summaries for the documents based on the words contained in them.
Hence, you can analyze words, clusters of words used in documents, or you could analyze documents
and determine similarities between them or how they are related to other variables of interest in the
data mining project. In the most general terms, text mining turns “text into number” which can then be
incorporated in other analyses.
Applications of text Mining are analyzing open-ended survey responses, automatic processing of
messages, emails, etc., analyzing warranty or insurance claims, diagnostic interviews, etc., investigating
competitors by crawling their web sites.

Limitations
There are certain limitations while doing Twitter Analysis using R. Firstly, while getting Status of user
timeline the method can only return a fixed maximum number of tweets which is limited by the Twitter
API.
Secondly, while requesting tweets for a particular keyword, it sometime happens that the number of
retrieved tweets are less than the number of requested tweets.
Thirdly, while requesting tweets for a particular keyword , the older tweets cannot be retrieved.

4
Tools and Packages used
In this project “Twitter Analysis using R” I have used RStudio GUI and following packages:
twitteR : Provides an interface to the Twitter web API.
ROAuth : This package provides an interface to the OAuth 1.0 specification, allowing users
to authenticate via OAuth to the server of their choice.
plyr : This package is a set of tools that solves a common set of problems: you need to break
a big problem down into manageable pieces, operate on each pieces and then put all the
pieces back together.
stringr : stringr is a set of simple wrappers that make R's string functions more consistent,
simpler and easier to use. It does this by ensuring that: function and argument names (and
positions) are consistent, all functions deal with NA's and zero length character
appropriately, and the output data structures from each function matches the input data
structures of other functions.
ggplot2 : An implementation of the grammar of graphics in R. It combines the advantages of
both base and lattice graphics: conditioning and shared axes are handled automatically, and
you can still build up a plot step by step from multiple data sources.
RColorBrewer : The packages provides palettes for drawing nice maps shaded according to
a variable.
tm : A framework for text mining applications within R.
wordcloud : This package helps in creating pretty looking word clouds in Text Mining.

5
Twitter Analysis:
Creating a Twitter Application
First step to perform Twitter Analysis is to create a twitter application. This application will allow
you to perform analysis by connecting your R console to the twitter using the Twitter API. The steps
for creating your twitter applications are:
Go to https://dev.twitter.com and login by using your twitter account.
Then go to My Applications  Create a new application.

Give your application a name, describe about your application in few words, provide your
website’s URL or your blog address (in case you don’t have any website). Leave the Callback
URL blank for now. Complete other formalities and create your twitter application. Once, all
the steps are done, the created application will show as below. Please note the Consumer
key and Consumer Secret numbers as they will be used in RStudio later.

6
This step is done. Next, I will work on my RStudio.

7
Working on RStudio- Building the corpus
In this section, I will first use some packages in R. These are twitter, ROAuth, plyr, stringr and
ggplot2. You can install these packages by the following commands:

Now run the following R script code snippet

After running this script section, the console will look like this

Now, windows users need to download a small file by following command

After running this code, RStudio will look for the following file at the given url, and will download it
for you. Your console will look like this:

8
Now once this file is downloaded, we are now moving on to accessing the twitter API. This step
include the script code to perform handshake using the Consumer Key and Consumer Secret
number of your own application. You have to change these entries by the keys from your
application. Following is the code you have to run to perform handshake.

Here, line number 12,13 and 14 assign the request url, access url and authorization url of twitter
application to the variables requestURL, accessURL and authURL respectively. consumerKey and
consumerSecret are unique to a twitter applicartion. Running this gives following message on the R
console :

The last three lines of the console are a message to the user. To enable the connection, please direct
your web browser to:
http://api.twitter.com/oauth/authorize?oauth_token=dHwEGXdxbjJ093sG0tVjYV
T0NQrkjU3DuCxcC1YQyc

9
After opening the above link in your browser, authorize application by providing you username and
password. And the app will be authorized. You will receive a code like this:

Write this code in the console. The console will give a message like this.

Now register the handshake by following command

The console will give a message with TRUE, which means that the handshake is complete. Now we
can get the tweets from the twitter timeline.

10
Saving Tweets
Once the handshake is done and authorized by twitter, we can fetch most recent tweets related to
any keyword. I have used #Kejriwal as Mr. Arvind Kejriwal is the most talked about person in Delhi
now a day.
The code for getting tweets related to #Kejriwal is:

This command will get 1000 tweets related to Kejriwal. The function “searchTwitter” is used to
download tweets from the timeline. Now we need to convert this list of 1000 tweets into the data
frame, so that we can work on it. Then finally we convert the data frame into .csv file

The Kejriwal.csv file contains all the information about the tweets. A snapshot of the csv file is given
below:

11
Sentiment Function
Once we have the tweets we just need to apply some functions to convert these tweets into some
useful information. The main working principle of sentiment analysis is to find the words in the
tweets that represent positive sentiments and find the words in the tweets that represent negative
sentiments. For this we need a list of words that contains positive and negative sentiment words. I
have downloaded the list from Google and it is easily available.
After downloading the list, save it in your working directory. The sentiment analysis uses two
packages plyr and stringr to manipulate strings. The function is

The sentiment function calculate score for each individual tweet. It first calculate the positive score
by comparing words with the negative words list and then calculate negative score by comparing
words with negative words list. The final score is calculated as

score= positive score – negative score.

12
Scoring tweets and adding column
In this step we score tweets from the above sentiment function.

The console gives the following output

13
Import the csv file

When we import this csv file, a dataset file is created in the working directory. Next step is to score
the tweets, this can be done by creating a separate csv file which contains the score of each tweet.
This can be done as follows:

The snapshot of the score file shows the score of each tweet as an integer in front of every tweet.

And this is the status shown on console

14
Visualizing the tweets
Now that all the work is done. We can create visual histograms and other plots to visualize the
sentiments of the user. This can be done by using hist function. I have used a package RColorBrewer
to play with colors. The code for creating histogram is

15
Analysis & Conclusion
The above histogram shows the frequency of tweets with respect of scores allotted to each tweets.
The x-axis shows the score of each tweet as a negative and positive integer or zero. A positive score
represents positive or good sentiments associated with that particular tweet whereas a negative
score represents negative or bad sentiments associated with that tweet. A score of zero indicates a
neutral sentiment. The more positive the score, the more positive the sentiments of the person
tweeting and vice-versa.
The above histogram is skewed towards negative score which shows that the sentiments of people
regarding Mr. Kejriwal are negative. This can be justified as in recent days , some of his schemes has
backfired such as holding Janta Darbar has been scrapped because of chaos it created.

This can also be stated using a Quick plot with following commands:

Out of 1000 tweets that were fetched from the twitter, A majority of them (400) are neutral,
whereas around 225 were having negative sentiments. Less than 100 tweets were having positive
sentiments but the overall score is negative as can be seen from the plot.
16
Text Analysis
Now that we have created a csv file containing tweets of the #Kejriwal. We can do the text mining of
the tweets. The procedure for this use wordcloud and tm package for text mining. The code for text
mining is:

The output of console will be a collection of all the tweets saved in that file.
Now, we perform some text mining functions to refine the text and filter the text according to our
need.

17
The final wordcloud obtained is as follows:

According to this wordcloud , we can see that Kejriwal is the most used term in the tweets followed
by power, cut, modi which shows that while tweeting about Kejriwal the person also connect the
term Kejriwal with the words like voting, power cuts and Modi.

18
Final code for Twitter Analysis

19
Final code for Text Mining

20
References
http://www.google.com
http://www.wikipedia.com
http://txcdk.unt.edu/iralab/sentiment_analysis
https://sites.google.com/site/miningtwitter/questions/sentiment/analysis

21

Recommended

social network analysis project twitter sentimental analysis by
social network analysis project twitter sentimental analysissocial network analysis project twitter sentimental analysis
social network analysis project twitter sentimental analysisAshish Mundra
588 views21 slides
Twitter sentiment analysis ppt by
Twitter sentiment analysis pptTwitter sentiment analysis ppt
Twitter sentiment analysis pptSonuCreation
1.6K views15 slides
Twitter sentiment analysis ppt by
Twitter sentiment analysis pptTwitter sentiment analysis ppt
Twitter sentiment analysis pptAntaraBhattacharya12
10.5K views10 slides
Sentiment analysis of Twitter Data by
Sentiment analysis of Twitter DataSentiment analysis of Twitter Data
Sentiment analysis of Twitter DataNurendra Choudhary
4.1K views26 slides
Sentiment analysis in Twitter on Big Data by
Sentiment analysis in Twitter on Big DataSentiment analysis in Twitter on Big Data
Sentiment analysis in Twitter on Big DataIswarya M
329 views33 slides
SENTIMENT ANALYSIS OF TWITTER DATA by
SENTIMENT ANALYSIS OF TWITTER DATASENTIMENT ANALYSIS OF TWITTER DATA
SENTIMENT ANALYSIS OF TWITTER DATAParvathy Devaraj
403 views5 slides

More Related Content

What's hot

Python report on twitter sentiment analysis by
Python report on twitter sentiment analysisPython report on twitter sentiment analysis
Python report on twitter sentiment analysisAntaraBhattacharya12
4.4K views11 slides
Sentimental Analysis of twitter data . by
Sentimental Analysis of twitter data .Sentimental Analysis of twitter data .
Sentimental Analysis of twitter data .Greater Noida Institute Of Technology
549 views13 slides
Twitter Sentiment Analysis.pdf by
Twitter Sentiment Analysis.pdfTwitter Sentiment Analysis.pdf
Twitter Sentiment Analysis.pdfRachanasamal3
104 views16 slides
Sentiment Analysis Using Twitter by
Sentiment Analysis Using TwitterSentiment Analysis Using Twitter
Sentiment Analysis Using Twitterpiya chauhan
571 views10 slides
Twitter sentiment analysis project report by
Twitter sentiment analysis project reportTwitter sentiment analysis project report
Twitter sentiment analysis project reportBharat Khanna
8.3K views3 slides
Sentiment analysis of Twitter data using python by
Sentiment analysis of Twitter data using pythonSentiment analysis of Twitter data using python
Sentiment analysis of Twitter data using pythonHetu Bhavsar
619 views19 slides

What's hot(20)

Twitter Sentiment Analysis.pdf by Rachanasamal3
Twitter Sentiment Analysis.pdfTwitter Sentiment Analysis.pdf
Twitter Sentiment Analysis.pdf
Rachanasamal3104 views
Sentiment Analysis Using Twitter by piya chauhan
Sentiment Analysis Using TwitterSentiment Analysis Using Twitter
Sentiment Analysis Using Twitter
piya chauhan571 views
Twitter sentiment analysis project report by Bharat Khanna
Twitter sentiment analysis project reportTwitter sentiment analysis project report
Twitter sentiment analysis project report
Bharat Khanna8.3K views
Sentiment analysis of Twitter data using python by Hetu Bhavsar
Sentiment analysis of Twitter data using pythonSentiment analysis of Twitter data using python
Sentiment analysis of Twitter data using python
Hetu Bhavsar619 views
Twitter sentiment analysis by Rahul Jha
Twitter sentiment analysisTwitter sentiment analysis
Twitter sentiment analysis
Rahul Jha1.1K views
Sentiment Analaysis on Twitter by Nitish J Prabhu
Sentiment Analaysis on TwitterSentiment Analaysis on Twitter
Sentiment Analaysis on Twitter
Nitish J Prabhu1.6K views
New sentiment analysis of tweets using python by Ravi kumar by Ravi Kumar
New sentiment analysis of tweets using python by Ravi kumarNew sentiment analysis of tweets using python by Ravi kumar
New sentiment analysis of tweets using python by Ravi kumar
Ravi Kumar2.7K views
Amazon Product Sentiment review by Lalit Jain
Amazon Product Sentiment reviewAmazon Product Sentiment review
Amazon Product Sentiment review
Lalit Jain3.2K views
How Sentiment Analysis works by CJ Jenkins
How Sentiment Analysis worksHow Sentiment Analysis works
How Sentiment Analysis works
CJ Jenkins54.3K views
Sentiment Analysis in Twitter by Ayushi Dalmia
Sentiment Analysis in TwitterSentiment Analysis in Twitter
Sentiment Analysis in Twitter
Ayushi Dalmia37K views
Twitter sentiment analysis by Sunil Kandari
Twitter sentiment analysisTwitter sentiment analysis
Twitter sentiment analysis
Sunil Kandari11.8K views
Over the top (OTT) video market - INDIA by Karthik Ramanujam
Over the top (OTT) video market - INDIAOver the top (OTT) video market - INDIA
Over the top (OTT) video market - INDIA
Karthik Ramanujam1.6K views
Sentiment Analysis in Twitter by prnk08
Sentiment Analysis in TwitterSentiment Analysis in Twitter
Sentiment Analysis in Twitter
prnk08699 views
Sentiment Analysis on Amazon Movie Reviews Dataset by Maham F'Rajput
Sentiment Analysis on Amazon Movie Reviews DatasetSentiment Analysis on Amazon Movie Reviews Dataset
Sentiment Analysis on Amazon Movie Reviews Dataset
Maham F'Rajput2.7K views

Similar to Twitter analysis by Kaify Rais

Sentiment Analysis on Twitter data using Machine Learning by
Sentiment Analysis on Twitter data using Machine LearningSentiment Analysis on Twitter data using Machine Learning
Sentiment Analysis on Twitter data using Machine LearningIRJET Journal
5 views5 slides
Datapedia Analysis Report by
Datapedia Analysis ReportDatapedia Analysis Report
Datapedia Analysis ReportAbanoub Amgad
1.1K views59 slides
Advanced Virtual Assistant Based on Speech Processing Oriented Technology on ... by
Advanced Virtual Assistant Based on Speech Processing Oriented Technology on ...Advanced Virtual Assistant Based on Speech Processing Oriented Technology on ...
Advanced Virtual Assistant Based on Speech Processing Oriented Technology on ...ijtsrd
23 views4 slides
python programming.pptx by
python programming.pptxpython programming.pptx
python programming.pptxKaviya452563
117 views29 slides
Twitter_Sentiment_analysis.pptx by
Twitter_Sentiment_analysis.pptxTwitter_Sentiment_analysis.pptx
Twitter_Sentiment_analysis.pptxJOELFRANKLIN13
2 views39 slides
Sentiment Analysis on Twitter Data Using Apache Flume and Hive by
Sentiment Analysis on Twitter Data Using Apache Flume and HiveSentiment Analysis on Twitter Data Using Apache Flume and Hive
Sentiment Analysis on Twitter Data Using Apache Flume and HiveIRJET Journal
36 views4 slides

Similar to Twitter analysis by Kaify Rais(20)

Sentiment Analysis on Twitter data using Machine Learning by IRJET Journal
Sentiment Analysis on Twitter data using Machine LearningSentiment Analysis on Twitter data using Machine Learning
Sentiment Analysis on Twitter data using Machine Learning
IRJET Journal5 views
Datapedia Analysis Report by Abanoub Amgad
Datapedia Analysis ReportDatapedia Analysis Report
Datapedia Analysis Report
Abanoub Amgad1.1K views
Advanced Virtual Assistant Based on Speech Processing Oriented Technology on ... by ijtsrd
Advanced Virtual Assistant Based on Speech Processing Oriented Technology on ...Advanced Virtual Assistant Based on Speech Processing Oriented Technology on ...
Advanced Virtual Assistant Based on Speech Processing Oriented Technology on ...
ijtsrd23 views
python programming.pptx by Kaviya452563
python programming.pptxpython programming.pptx
python programming.pptx
Kaviya452563117 views
Sentiment Analysis on Twitter Data Using Apache Flume and Hive by IRJET Journal
Sentiment Analysis on Twitter Data Using Apache Flume and HiveSentiment Analysis on Twitter Data Using Apache Flume and Hive
Sentiment Analysis on Twitter Data Using Apache Flume and Hive
IRJET Journal36 views
Both, Gramazio And Kohler, Seem To Satisfy A More Holistic... by Pamela Wright
Both, Gramazio And Kohler, Seem To Satisfy A More Holistic...Both, Gramazio And Kohler, Seem To Satisfy A More Holistic...
Both, Gramazio And Kohler, Seem To Satisfy A More Holistic...
Pamela Wright2 views
Up your data game: How to use R to wrangle, analyze, and visualize data faste... by Charles Guedenet
Up your data game: How to use R to wrangle, analyze, and visualize data faste...Up your data game: How to use R to wrangle, analyze, and visualize data faste...
Up your data game: How to use R to wrangle, analyze, and visualize data faste...
Charles Guedenet97 views
IRJET- Hosting NLP based Chatbot on AWS Cloud using Docker by IRJET Journal
IRJET-  	  Hosting NLP based Chatbot on AWS Cloud using DockerIRJET-  	  Hosting NLP based Chatbot on AWS Cloud using Docker
IRJET- Hosting NLP based Chatbot on AWS Cloud using Docker
IRJET Journal6 views
Annotated Bibliography On Unreliable Software by Mary Brown
Annotated Bibliography On Unreliable SoftwareAnnotated Bibliography On Unreliable Software
Annotated Bibliography On Unreliable Software
Mary Brown4 views
Brief Introduction to R and RStudio.pdf by HarryRobinson22
Brief Introduction to R and RStudio.pdfBrief Introduction to R and RStudio.pdf
Brief Introduction to R and RStudio.pdf
HarryRobinson2224 views
IRJET- Voice to Code Editor using Speech Recognition by IRJET Journal
IRJET- Voice to Code Editor using Speech RecognitionIRJET- Voice to Code Editor using Speech Recognition
IRJET- Voice to Code Editor using Speech Recognition
IRJET Journal19 views
IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell... by IRJET Journal
IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...
IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...
IRJET Journal11 views
Data Science - Part II - Working with R & R studio by Derek Kane
Data Science - Part II -  Working with R & R studioData Science - Part II -  Working with R & R studio
Data Science - Part II - Working with R & R studio
Derek Kane6.2K views
employee turnover prediction document.docx by rohithprabhas1
employee turnover prediction document.docxemployee turnover prediction document.docx
employee turnover prediction document.docx
rohithprabhas16 views

More from Ajay Ohri

Introduction to R ajay Ohri by
Introduction to R ajay OhriIntroduction to R ajay Ohri
Introduction to R ajay OhriAjay Ohri
1.2K views129 slides
Introduction to R by
Introduction to RIntroduction to R
Introduction to RAjay Ohri
9.2K views129 slides
Social Media and Fake News in the 2016 Election by
Social Media and Fake News in the 2016 ElectionSocial Media and Fake News in the 2016 Election
Social Media and Fake News in the 2016 ElectionAjay Ohri
1.6K views26 slides
Pyspark by
PysparkPyspark
PysparkAjay Ohri
998 views9 slides
Download Python for R Users pdf for free by
Download Python for R Users pdf for freeDownload Python for R Users pdf for free
Download Python for R Users pdf for freeAjay Ohri
1.9K views1 slide
Install spark on_windows10 by
Install spark on_windows10Install spark on_windows10
Install spark on_windows10Ajay Ohri
608 views9 slides

More from Ajay Ohri(20)

Introduction to R ajay Ohri by Ajay Ohri
Introduction to R ajay OhriIntroduction to R ajay Ohri
Introduction to R ajay Ohri
Ajay Ohri1.2K views
Introduction to R by Ajay Ohri
Introduction to RIntroduction to R
Introduction to R
Ajay Ohri9.2K views
Social Media and Fake News in the 2016 Election by Ajay Ohri
Social Media and Fake News in the 2016 ElectionSocial Media and Fake News in the 2016 Election
Social Media and Fake News in the 2016 Election
Ajay Ohri1.6K views
Download Python for R Users pdf for free by Ajay Ohri
Download Python for R Users pdf for freeDownload Python for R Users pdf for free
Download Python for R Users pdf for free
Ajay Ohri1.9K views
Install spark on_windows10 by Ajay Ohri
Install spark on_windows10Install spark on_windows10
Install spark on_windows10
Ajay Ohri608 views
Ajay ohri Resume by Ajay Ohri
Ajay ohri ResumeAjay ohri Resume
Ajay ohri Resume
Ajay Ohri1.4K views
Statistics for data scientists by Ajay Ohri
Statistics for  data scientistsStatistics for  data scientists
Statistics for data scientists
Ajay Ohri14.2K views
National seminar on emergence of internet of things (io t) trends and challe... by Ajay Ohri
National seminar on emergence of internet of things (io t)  trends and challe...National seminar on emergence of internet of things (io t)  trends and challe...
National seminar on emergence of internet of things (io t) trends and challe...
Ajay Ohri4.1K views
Tools and techniques for data science by Ajay Ohri
Tools and techniques for data scienceTools and techniques for data science
Tools and techniques for data science
Ajay Ohri10.8K views
How Big Data ,Cloud Computing ,Data Science can help business by Ajay Ohri
How Big Data ,Cloud Computing ,Data Science can help businessHow Big Data ,Cloud Computing ,Data Science can help business
How Big Data ,Cloud Computing ,Data Science can help business
Ajay Ohri4.1K views
Training in Analytics and Data Science by Ajay Ohri
Training in Analytics and Data ScienceTraining in Analytics and Data Science
Training in Analytics and Data Science
Ajay Ohri5.8K views
Tradecraft by Ajay Ohri
Tradecraft   Tradecraft
Tradecraft
Ajay Ohri989 views
Software Testing for Data Scientists by Ajay Ohri
Software Testing for Data ScientistsSoftware Testing for Data Scientists
Software Testing for Data Scientists
Ajay Ohri2.5K views
A Data Science Tutorial in Python by Ajay Ohri
A Data Science Tutorial in PythonA Data Science Tutorial in Python
A Data Science Tutorial in Python
Ajay Ohri15.9K views
How does cryptography work? by Jeroen Ooms by Ajay Ohri
How does cryptography work?  by Jeroen OomsHow does cryptography work?  by Jeroen Ooms
How does cryptography work? by Jeroen Ooms
Ajay Ohri976 views
Using R for Social Media and Sports Analytics by Ajay Ohri
Using R for Social Media and Sports AnalyticsUsing R for Social Media and Sports Analytics
Using R for Social Media and Sports Analytics
Ajay Ohri1.8K views
Kush stats alpha by Ajay Ohri
Kush stats alpha Kush stats alpha
Kush stats alpha
Ajay Ohri1.7K views
Analyze this by Ajay Ohri
Analyze thisAnalyze this
Analyze this
Ajay Ohri962 views

Recently uploaded

Aquagold facial by
Aquagold facialAquagold facial
Aquagold facialartisanaestheticspk
5 views1 slide
6 Benefits of Sober Living Homes.pptx by
6 Benefits of Sober Living Homes.pptx6 Benefits of Sober Living Homes.pptx
6 Benefits of Sober Living Homes.pptxbrookeshousefoundati
5 views8 slides
Quotes about hard work .pdf by
Quotes about hard work .pdfQuotes about hard work .pdf
Quotes about hard work .pdfInspire99
21 views17 slides
2023-11 Managing your Cost of Living and Spending.pptx by
2023-11 Managing your Cost of Living and Spending.pptx2023-11 Managing your Cost of Living and Spending.pptx
2023-11 Managing your Cost of Living and Spending.pptxdmeekis
17 views35 slides
Water Freedom System - Huge New Offer For 2022! Digital - Ebooks by
Water Freedom System - Huge New Offer For 2022! Digital - EbooksWater Freedom System - Huge New Offer For 2022! Digital - Ebooks
Water Freedom System - Huge New Offer For 2022! Digital - Ebooksmuhammadashfaqahmad31
7 views38 slides
Crypto Quantum Leap by
Crypto Quantum Leap Crypto Quantum Leap
Crypto Quantum Leap ahmedjaan790
8 views22 slides

Recently uploaded(11)

Quotes about hard work .pdf by Inspire99
Quotes about hard work .pdfQuotes about hard work .pdf
Quotes about hard work .pdf
Inspire9921 views
2023-11 Managing your Cost of Living and Spending.pptx by dmeekis
2023-11 Managing your Cost of Living and Spending.pptx2023-11 Managing your Cost of Living and Spending.pptx
2023-11 Managing your Cost of Living and Spending.pptx
dmeekis17 views
Water Freedom System - Huge New Offer For 2022! Digital - Ebooks by muhammadashfaqahmad31
Water Freedom System - Huge New Offer For 2022! Digital - EbooksWater Freedom System - Huge New Offer For 2022! Digital - Ebooks
Water Freedom System - Huge New Offer For 2022! Digital - Ebooks
The_5_Love_Languages.pdf by foodcoop1
The_5_Love_Languages.pdfThe_5_Love_Languages.pdf
The_5_Love_Languages.pdf
foodcoop111 views
Quotes on self confidence and self belief ppt .pdf by Inspire99
Quotes on self confidence and self belief ppt .pdfQuotes on self confidence and self belief ppt .pdf
Quotes on self confidence and self belief ppt .pdf
Inspire9934 views
How to use a toilet brush by Jim O'Regan
How to use a toilet brushHow to use a toilet brush
How to use a toilet brush
Jim O'Regan6 views
2023-11 Managing your Cost of Living and Spending.pptx by dmeekis
2023-11 Managing your Cost of Living and Spending.pptx2023-11 Managing your Cost of Living and Spending.pptx
2023-11 Managing your Cost of Living and Spending.pptx
dmeekis18 views

Twitter analysis by Kaify Rais

  • 1. TWITTER ANALYSIS (IN RSTUDIO USING R PROGRAMMING LANGUAGE) Prepared By: KAIFY RAIS in.linkedin.com/pub/kaify-rais/31/346/886/ 1
  • 2. Acknowledgement This project is done as a final project as a part of the training course titled “Business Analytics with R”. I am really thankful to our course instructor Mr. Ajay Ohri, Founder, DecisionStats, for giving me an opportunity to work on the project “Twitter Analysis using R” and providing me with the necessary support and guidance which made me complete the project on time. I am extremely grateful to him for providing me the necessary links and material to start the project and understand the concept of Twitter Analysis using R. In this project “Twitter Analysis using R” , I have performed the Sentiment Analysis and Text Mining techniques on “#Kejriwal “. This project is done in RStudio which uses the libraries of R programming languages. I am really grateful to the resourceful articles and websites of R-project which helped me in understanding the tool as well as the topic. Also, I would like to extend my sincere regards to the support team of Edureka for their constant and timely support. 2
  • 3. Table of Contents Introduction .................................................................................................................................................. 4 Limitations .................................................................................................................................................... 4 Tools and Packages used .............................................................................................................................. 5 Twitter Analysis:............................................................................................................................................ 6 Creating a Twitter Application .................................................................................................................. 6 Working on RStudio- Building the corpus ................................................................................................. 8 Saving Tweets ......................................................................................................................................... 11 Sentiment Function................................................................................................................................. 12 Scoring tweets and adding column ......................................................................................................... 13 Import the csv file ................................................................................................................................... 14 Visualizing the tweets ............................................................................................................................. 15 Analysis & Conclusion ................................................................................................................................. 16 Text Analysis ............................................................................................................................................... 17 Final code for Twitter Analysis .................................................................................................................... 19 Final code for Text Mining .......................................................................................................................... 20 References .................................................................................................................................................. 21 3
  • 4. Introductions Twitter is an amazing micro blogging tool and an extraordinary communication medium. In addition, twitter can also be an amazing open mine for text and social web analyses. Among the different softwares that can be used to analyze twitter, R offers a wide variety of options to do lots of interesting and fun things. In this project I have used RStudio as its pretty much easier working with scripts as compared to R. According to Wikipedia, Sentiment analysis (also known as opinion mining) refers to the use of natural language processing, text analysis and computational linguistics to identify and extract subjective information in source materials. Sentiment analysis, also referred to as Opinion Mining, implies extracting opinions, emotions and sentiments in text. As you can imagine, one of the most common applications of sentiment analysis is to track attitudes and feelings on the web, especially for tacking products, services, brands or even people. The main idea is to determine whether they are viewed positively or negatively by a given audience. The purpose of Text Mining is to process unstructured (textual) information, extract meaningful numeric indices from the text, and, thus, make the information contained in the text accessible to the various data mining algorithms. Information can be extracted to derive summaries for the words contained in the documents or to compute summaries for the documents based on the words contained in them. Hence, you can analyze words, clusters of words used in documents, or you could analyze documents and determine similarities between them or how they are related to other variables of interest in the data mining project. In the most general terms, text mining turns “text into number” which can then be incorporated in other analyses. Applications of text Mining are analyzing open-ended survey responses, automatic processing of messages, emails, etc., analyzing warranty or insurance claims, diagnostic interviews, etc., investigating competitors by crawling their web sites. Limitations There are certain limitations while doing Twitter Analysis using R. Firstly, while getting Status of user timeline the method can only return a fixed maximum number of tweets which is limited by the Twitter API. Secondly, while requesting tweets for a particular keyword, it sometime happens that the number of retrieved tweets are less than the number of requested tweets. Thirdly, while requesting tweets for a particular keyword , the older tweets cannot be retrieved. 4
  • 5. Tools and Packages used In this project “Twitter Analysis using R” I have used RStudio GUI and following packages: twitteR : Provides an interface to the Twitter web API. ROAuth : This package provides an interface to the OAuth 1.0 specification, allowing users to authenticate via OAuth to the server of their choice. plyr : This package is a set of tools that solves a common set of problems: you need to break a big problem down into manageable pieces, operate on each pieces and then put all the pieces back together. stringr : stringr is a set of simple wrappers that make R's string functions more consistent, simpler and easier to use. It does this by ensuring that: function and argument names (and positions) are consistent, all functions deal with NA's and zero length character appropriately, and the output data structures from each function matches the input data structures of other functions. ggplot2 : An implementation of the grammar of graphics in R. It combines the advantages of both base and lattice graphics: conditioning and shared axes are handled automatically, and you can still build up a plot step by step from multiple data sources. RColorBrewer : The packages provides palettes for drawing nice maps shaded according to a variable. tm : A framework for text mining applications within R. wordcloud : This package helps in creating pretty looking word clouds in Text Mining. 5
  • 6. Twitter Analysis: Creating a Twitter Application First step to perform Twitter Analysis is to create a twitter application. This application will allow you to perform analysis by connecting your R console to the twitter using the Twitter API. The steps for creating your twitter applications are: Go to https://dev.twitter.com and login by using your twitter account. Then go to My Applications  Create a new application. Give your application a name, describe about your application in few words, provide your website’s URL or your blog address (in case you don’t have any website). Leave the Callback URL blank for now. Complete other formalities and create your twitter application. Once, all the steps are done, the created application will show as below. Please note the Consumer key and Consumer Secret numbers as they will be used in RStudio later. 6
  • 7. This step is done. Next, I will work on my RStudio. 7
  • 8. Working on RStudio- Building the corpus In this section, I will first use some packages in R. These are twitter, ROAuth, plyr, stringr and ggplot2. You can install these packages by the following commands: Now run the following R script code snippet After running this script section, the console will look like this Now, windows users need to download a small file by following command After running this code, RStudio will look for the following file at the given url, and will download it for you. Your console will look like this: 8
  • 9. Now once this file is downloaded, we are now moving on to accessing the twitter API. This step include the script code to perform handshake using the Consumer Key and Consumer Secret number of your own application. You have to change these entries by the keys from your application. Following is the code you have to run to perform handshake. Here, line number 12,13 and 14 assign the request url, access url and authorization url of twitter application to the variables requestURL, accessURL and authURL respectively. consumerKey and consumerSecret are unique to a twitter applicartion. Running this gives following message on the R console : The last three lines of the console are a message to the user. To enable the connection, please direct your web browser to: http://api.twitter.com/oauth/authorize?oauth_token=dHwEGXdxbjJ093sG0tVjYV T0NQrkjU3DuCxcC1YQyc 9
  • 10. After opening the above link in your browser, authorize application by providing you username and password. And the app will be authorized. You will receive a code like this: Write this code in the console. The console will give a message like this. Now register the handshake by following command The console will give a message with TRUE, which means that the handshake is complete. Now we can get the tweets from the twitter timeline. 10
  • 11. Saving Tweets Once the handshake is done and authorized by twitter, we can fetch most recent tweets related to any keyword. I have used #Kejriwal as Mr. Arvind Kejriwal is the most talked about person in Delhi now a day. The code for getting tweets related to #Kejriwal is: This command will get 1000 tweets related to Kejriwal. The function “searchTwitter” is used to download tweets from the timeline. Now we need to convert this list of 1000 tweets into the data frame, so that we can work on it. Then finally we convert the data frame into .csv file The Kejriwal.csv file contains all the information about the tweets. A snapshot of the csv file is given below: 11
  • 12. Sentiment Function Once we have the tweets we just need to apply some functions to convert these tweets into some useful information. The main working principle of sentiment analysis is to find the words in the tweets that represent positive sentiments and find the words in the tweets that represent negative sentiments. For this we need a list of words that contains positive and negative sentiment words. I have downloaded the list from Google and it is easily available. After downloading the list, save it in your working directory. The sentiment analysis uses two packages plyr and stringr to manipulate strings. The function is The sentiment function calculate score for each individual tweet. It first calculate the positive score by comparing words with the negative words list and then calculate negative score by comparing words with negative words list. The final score is calculated as score= positive score – negative score. 12
  • 13. Scoring tweets and adding column In this step we score tweets from the above sentiment function. The console gives the following output 13
  • 14. Import the csv file When we import this csv file, a dataset file is created in the working directory. Next step is to score the tweets, this can be done by creating a separate csv file which contains the score of each tweet. This can be done as follows: The snapshot of the score file shows the score of each tweet as an integer in front of every tweet. And this is the status shown on console 14
  • 15. Visualizing the tweets Now that all the work is done. We can create visual histograms and other plots to visualize the sentiments of the user. This can be done by using hist function. I have used a package RColorBrewer to play with colors. The code for creating histogram is 15
  • 16. Analysis & Conclusion The above histogram shows the frequency of tweets with respect of scores allotted to each tweets. The x-axis shows the score of each tweet as a negative and positive integer or zero. A positive score represents positive or good sentiments associated with that particular tweet whereas a negative score represents negative or bad sentiments associated with that tweet. A score of zero indicates a neutral sentiment. The more positive the score, the more positive the sentiments of the person tweeting and vice-versa. The above histogram is skewed towards negative score which shows that the sentiments of people regarding Mr. Kejriwal are negative. This can be justified as in recent days , some of his schemes has backfired such as holding Janta Darbar has been scrapped because of chaos it created. This can also be stated using a Quick plot with following commands: Out of 1000 tweets that were fetched from the twitter, A majority of them (400) are neutral, whereas around 225 were having negative sentiments. Less than 100 tweets were having positive sentiments but the overall score is negative as can be seen from the plot. 16
  • 17. Text Analysis Now that we have created a csv file containing tweets of the #Kejriwal. We can do the text mining of the tweets. The procedure for this use wordcloud and tm package for text mining. The code for text mining is: The output of console will be a collection of all the tweets saved in that file. Now, we perform some text mining functions to refine the text and filter the text according to our need. 17
  • 18. The final wordcloud obtained is as follows: According to this wordcloud , we can see that Kejriwal is the most used term in the tweets followed by power, cut, modi which shows that while tweeting about Kejriwal the person also connect the term Kejriwal with the words like voting, power cuts and Modi. 18
  • 19. Final code for Twitter Analysis 19
  • 20. Final code for Text Mining 20