Tagged Questions
0
votes
0answers
49 views
In R: Filtering text documents based on multiple words
I am attempting to do some Text mining using the tm package in R. My task was to group the text documents in my Corpus according to negative and positive sentiments.
For this purpose, I had intended ...
0
votes
2answers
50 views
Viralheat API through R
I am trying to use the Viral Heat API in R for sentiment analysis.
Directly hitting the browser with URL is returning proper results.
http://www.viralheat.com/api/sentiment/review.json?text=i am ...
2
votes
1answer
431 views
Emoticons in Twitter Sentiment Analysis in r
How do I handle/get rid of emoticons so that I can sort tweets for sentiment analysis?
Getting:
Error in sort.list(y) :
invalid input
Thanks
and this is how the emoticons come out looking from ...
2
votes
1answer
447 views
Is there any other package other than “sentiment” to do Sentiment Analysis in R?
The "sentiment" package in R was removed from the Cran repository. What are the other packages which can do Sentiment Analysis?
EDIT add a concrete example:
For example, How I can rewrite this in ...
0
votes
0answers
137 views
Rstem and sentiment package installation issue
It seems without Rstem and sentiment package twitter sentiment analysis
is difficult.
I am trying this Rstem and sentiment package installation using the tar.gz file
(as no windows binary available ...
-6
votes
1answer
188 views
Bug in twitteR and sentiment analysis code [closed]
score.sentiment = function(sentences, pos.words, neg.words, .progress='none')
{
require(plyr)
require(stringr)
#we got a vector of sentences. plyr will handle a list
#or a vector as an ...
1
vote
1answer
127 views
Find “near duplicates” strings in R
I am using R to build a sentiment analysis tool and I am having some problems with duplicates. The main source of data is Twitter, and it looks like many are bypassing twitter own spam filter by ...
0
votes
0answers
473 views
calculate accuracy and precision of confusion matrix in R
Is there any tool / R package available to calculate accuracy and precision of confusion matrix in R ?
The formula and data structure are here
1
vote
1answer
104 views
Add new words to the lexicon for R sentiment package
I'm currently doing sentiment and emotion analysis of Twitter's data using R sentiment package and need to add new words to the subjectivity and emotion lexicons used by the package as there are some ...
9
votes
3answers
4k views
Sentiment analysis using R
Are there any R packages that focus on sentiment analysis? I have a small survey where users can write a comment about their experience of using a web-tool. I ask for a numerical ranking, and there is ...