SlideShare uma empresa Scribd logo
1 de 21
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

Mais conteúdo relacionado

Mais procurados

Twitter sentiment analysis ppt
Twitter sentiment analysis pptTwitter sentiment analysis ppt
Twitter sentiment analysis ppt
SonuCreation
 
Twitter powerpoint project
Twitter powerpoint projectTwitter powerpoint project
Twitter powerpoint project
JColon624
 

Mais procurados (20)

Sentimental Analysis of twitter data .
Sentimental Analysis of twitter data .Sentimental Analysis of twitter data .
Sentimental Analysis of twitter data .
 
Sentiment Analysis on Twitter
Sentiment Analysis on TwitterSentiment Analysis on Twitter
Sentiment Analysis on Twitter
 
Sentiment Analysis in Twitter
Sentiment Analysis in TwitterSentiment Analysis in Twitter
Sentiment Analysis in Twitter
 
Sentiment Analysis using Twitter Data
Sentiment Analysis using Twitter DataSentiment Analysis using Twitter Data
Sentiment Analysis using Twitter Data
 
Twitter sentiment analysis ppt
Twitter sentiment analysis pptTwitter sentiment analysis ppt
Twitter sentiment analysis ppt
 
New sentiment analysis of tweets using python 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
 
Sentiment Analysis in Twitter
Sentiment Analysis in TwitterSentiment Analysis in Twitter
Sentiment Analysis in Twitter
 
Python report on twitter sentiment analysis
Python report on twitter sentiment analysisPython report on twitter sentiment analysis
Python report on twitter sentiment analysis
 
Sentiment Analysis on Twitter
Sentiment Analysis on TwitterSentiment Analysis on Twitter
Sentiment Analysis on Twitter
 
Twitter sentiment analysis
Twitter sentiment analysisTwitter sentiment analysis
Twitter sentiment analysis
 
Sentiment Analysis of Twitter Data
Sentiment Analysis of Twitter DataSentiment Analysis of Twitter Data
Sentiment Analysis of Twitter Data
 
Sentiment analysis of Twitter Data
Sentiment analysis of Twitter DataSentiment analysis of Twitter Data
Sentiment analysis of Twitter Data
 
Social Media Sentiments Analysis
Social Media Sentiments AnalysisSocial Media Sentiments Analysis
Social Media Sentiments Analysis
 
Twitter sentiment analysis
Twitter sentiment analysisTwitter sentiment analysis
Twitter sentiment analysis
 
Twitter powerpoint project
Twitter powerpoint projectTwitter powerpoint project
Twitter powerpoint project
 
Twitter sentimentanalysis report
Twitter sentimentanalysis reportTwitter sentimentanalysis report
Twitter sentimentanalysis report
 
Twitter sentiment analysis ppt
Twitter sentiment analysis pptTwitter sentiment analysis ppt
Twitter sentiment analysis ppt
 
Twitter sentiment analysis project report
Twitter sentiment analysis project reportTwitter sentiment analysis project report
Twitter sentiment analysis project report
 
Social Media Analytics
Social Media AnalyticsSocial Media Analytics
Social Media Analytics
 
Sentiment Analysis
Sentiment AnalysisSentiment Analysis
Sentiment Analysis
 

Semelhante a Twitter analysis by Kaify Rais

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 ...
Advanced Virtual Assistant Based on Speech Processing Oriented Technology on ...
ijtsrd
 
Annotated Bibliography On Unreliable Software
Annotated Bibliography On Unreliable SoftwareAnnotated Bibliography On Unreliable Software
Annotated Bibliography On Unreliable Software
Mary Brown
 
srd117.final.512Spring2016
srd117.final.512Spring2016srd117.final.512Spring2016
srd117.final.512Spring2016
Saurabh Deochake
 
employee turnover prediction document.docx
employee turnover prediction document.docxemployee turnover prediction document.docx
employee turnover prediction document.docx
rohithprabhas1
 
Sales_Prediction_Technique using R Programming
Sales_Prediction_Technique using R ProgrammingSales_Prediction_Technique using R Programming
Sales_Prediction_Technique using R Programming
Nagarjun Kotyada
 

Semelhante a Twitter analysis by Kaify Rais (20)

Sentiment Analysis on Twitter data using Machine Learning
Sentiment Analysis on Twitter data using Machine LearningSentiment Analysis on Twitter data using Machine Learning
Sentiment Analysis on Twitter data using Machine Learning
 
Datapedia Analysis Report
Datapedia Analysis ReportDatapedia Analysis Report
Datapedia Analysis Report
 
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 ...
Advanced Virtual Assistant Based on Speech Processing Oriented Technology on ...
 
python programming.pptx
python programming.pptxpython programming.pptx
python programming.pptx
 
Twitter_Sentiment_analysis.pptx
Twitter_Sentiment_analysis.pptxTwitter_Sentiment_analysis.pptx
Twitter_Sentiment_analysis.pptx
 
Sentiment Analysis on Twitter Data Using Apache Flume and Hive
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
 
Final Algos
Final AlgosFinal Algos
Final Algos
 
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...
Up your data game: How to use R to wrangle, analyze, and visualize data faste...
 
IRJET- Hosting NLP based Chatbot on AWS Cloud using Docker
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
 
Annotated Bibliography On Unreliable Software
Annotated Bibliography On Unreliable SoftwareAnnotated Bibliography On Unreliable Software
Annotated Bibliography On Unreliable Software
 
IRJET- Voice to Code Editor using Speech Recognition
IRJET- Voice to Code Editor using Speech RecognitionIRJET- Voice to Code Editor using Speech Recognition
IRJET- Voice to Code Editor using Speech Recognition
 
Datasciencetools
DatasciencetoolsDatasciencetools
Datasciencetools
 
How TypeScript App Development is Important.pdf
How TypeScript App Development is Important.pdfHow TypeScript App Development is Important.pdf
How TypeScript App Development is Important.pdf
 
srd117.final.512Spring2016
srd117.final.512Spring2016srd117.final.512Spring2016
srd117.final.512Spring2016
 
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- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...
 
Data Science - Part II - Working with R & R studio
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
 
PRELIM-Lesson-2.pdf
PRELIM-Lesson-2.pdfPRELIM-Lesson-2.pdf
PRELIM-Lesson-2.pdf
 
employee turnover prediction document.docx
employee turnover prediction document.docxemployee turnover prediction document.docx
employee turnover prediction document.docx
 
Build up and tune PC website(prototype)
Build up and tune PC website(prototype)Build up and tune PC website(prototype)
Build up and tune PC website(prototype)
 
Sales_Prediction_Technique using R Programming
Sales_Prediction_Technique using R ProgrammingSales_Prediction_Technique using R Programming
Sales_Prediction_Technique using R Programming
 

Mais de Ajay Ohri

Mais de Ajay Ohri (20)

Introduction to R ajay Ohri
Introduction to R ajay OhriIntroduction to R ajay Ohri
Introduction to R ajay Ohri
 
Introduction to R
Introduction to RIntroduction to R
Introduction to R
 
Social Media and Fake News in the 2016 Election
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
 
Pyspark
PysparkPyspark
Pyspark
 
Download Python for R Users pdf for free
Download Python for R Users pdf for freeDownload Python for R Users pdf for free
Download Python for R Users pdf for free
 
Install spark on_windows10
Install spark on_windows10Install spark on_windows10
Install spark on_windows10
 
Ajay ohri Resume
Ajay ohri ResumeAjay ohri Resume
Ajay ohri Resume
 
Statistics for data scientists
Statistics for  data scientistsStatistics for  data scientists
Statistics for data scientists
 
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...
National seminar on emergence of internet of things (io t) trends and challe...
 
Tools and techniques for data science
Tools and techniques for data scienceTools and techniques for data science
Tools and techniques for data science
 
How Big Data ,Cloud Computing ,Data Science can help business
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
 
Training in Analytics and Data Science
Training in Analytics and Data ScienceTraining in Analytics and Data Science
Training in Analytics and Data Science
 
Tradecraft
Tradecraft   Tradecraft
Tradecraft
 
Software Testing for Data Scientists
Software Testing for Data ScientistsSoftware Testing for Data Scientists
Software Testing for Data Scientists
 
Craps
CrapsCraps
Craps
 
A Data Science Tutorial in Python
A Data Science Tutorial in PythonA Data Science Tutorial in Python
A Data Science Tutorial in Python
 
How does cryptography work? by Jeroen Ooms
How does cryptography work?  by Jeroen OomsHow does cryptography work?  by Jeroen Ooms
How does cryptography work? by Jeroen Ooms
 
Using R for Social Media and Sports Analytics
Using R for Social Media and Sports AnalyticsUsing R for Social Media and Sports Analytics
Using R for Social Media and Sports Analytics
 
Kush stats alpha
Kush stats alpha Kush stats alpha
Kush stats alpha
 
Analyze this
Analyze thisAnalyze this
Analyze this
 

Último

the Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentationthe Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentation
brynpueblos04
 
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
Cara Menggugurkan Kandungan 087776558899
 
Girls in Mahipalpur (delhi) call me [🔝9953056974🔝] escort service 24X7
Girls in Mahipalpur  (delhi) call me [🔝9953056974🔝] escort service 24X7Girls in Mahipalpur  (delhi) call me [🔝9953056974🔝] escort service 24X7
Girls in Mahipalpur (delhi) call me [🔝9953056974🔝] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
February 2024 Recommendations for newsletter
February 2024 Recommendations for newsletterFebruary 2024 Recommendations for newsletter
February 2024 Recommendations for newsletter
ssuserdfec6a
 

Último (15)

Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
 
2023 - Between Philosophy and Practice: Introducing Yoga
2023 - Between Philosophy and Practice: Introducing Yoga2023 - Between Philosophy and Practice: Introducing Yoga
2023 - Between Philosophy and Practice: Introducing Yoga
 
the Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentationthe Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentation
 
SIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
SIKP311 Sikolohiyang Pilipino - Ginhawa.pptxSIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
SIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
 
Colaba Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Colaba Escorts 🥰 8617370543 Call Girls Offer VIP Hot GirlsColaba Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Colaba Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
 
Social Learning Theory presentation.pptx
Social Learning Theory presentation.pptxSocial Learning Theory presentation.pptx
Social Learning Theory presentation.pptx
 
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
 
Pokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy TheoryPokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy Theory
 
Exploring Stoic Philosophy From Ancient Wisdom to Modern Relevance.pdf
Exploring Stoic Philosophy From Ancient Wisdom to Modern Relevance.pdfExploring Stoic Philosophy From Ancient Wisdom to Modern Relevance.pdf
Exploring Stoic Philosophy From Ancient Wisdom to Modern Relevance.pdf
 
Goregaon West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Goregaon West Escorts 🥰 8617370543 Call Girls Offer VIP Hot GirlsGoregaon West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Goregaon West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
 
Girls in Mahipalpur (delhi) call me [🔝9953056974🔝] escort service 24X7
Girls in Mahipalpur  (delhi) call me [🔝9953056974🔝] escort service 24X7Girls in Mahipalpur  (delhi) call me [🔝9953056974🔝] escort service 24X7
Girls in Mahipalpur (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot GirlsDadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
 
Emotional Freedom Technique Tapping Points Diagram.pdf
Emotional Freedom Technique Tapping Points Diagram.pdfEmotional Freedom Technique Tapping Points Diagram.pdf
Emotional Freedom Technique Tapping Points Diagram.pdf
 
March 2023 Recommendations for newsletter
March 2023 Recommendations for newsletterMarch 2023 Recommendations for newsletter
March 2023 Recommendations for newsletter
 
February 2024 Recommendations for newsletter
February 2024 Recommendations for newsletterFebruary 2024 Recommendations for newsletter
February 2024 Recommendations for newsletter
 

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