Ho cercato di riorganizzare e di fornire un pacchetto di analisi sentimento coesa here. SentR include word stemming e preelaborazione e fornisce l'accesso all'API ViralHeat, una funzione di aggregazione predefinita e un metodo Naive Bayes più avanzato.
L'installazione è relativamente semplice:
install.packages('devtools')
require('devtools')
install_github('mananshah99/sentR')
require('sentR')
E un semplice esempio di classificazione:
# Create small vectors for happy and sad words (useful in aggregate(...) function)
positive <- c('happy', 'well-off', 'good', 'happiness')
negative <- c('sad', 'bad', 'miserable', 'terrible')
# Words to test sentiment
test <- c('I am a very happy person.', 'I am a very sad person',
'I’ve always understood happiness to be appreciation. There is no greater happiness than appreciation for what one has- both physically and in the way of relationships and ideologies. The unhappy seek that which they do not have and can not fully appreciate the things around them. I don’t expect much from life. I don’t need a high paying job, a big house or fancy cars. I simply wish to be able to live my life appreciating everything around me.
')
# 1. Simple Summation
out <- classify.aggregate(test, positive, negative)
out
# 2. Naive Bayes
out <- classify.naivebayes(test)
out
Che fornisce il seguente risultato:
score
1 1
2 -1
3 2
POS NEG POS/NEG SENT
[1,] "9.47547003995745" "0.445453222112551" "21.2715265477714" "positive"
[2,] "1.03127774142571" "9.47547003995745" "0.108836578774127" "negative"
[3,] "67.1985217685598" "35.1792261323723" "1.9101762362738" "positive"
Non esitate a contribuire :) Speranza questo aiuta!
Dai un'occhiata al lavoro di Jeffery Breen qui: http: //www.slideshare.net/jeffreybreen/r-by-example-mining-twitter-for – mweylandt
@mweylandt, come mio amico Jeffrey, è "r-e-y". Ma sembra un metodo semplice e accurato. –
Jeffrey Breen fornisce un'ottima guida soprattutto ai principianti di Text Mining come me. Promosso per visitare il link condiviso da Paras. Da questo link è possibile visitare il sito web del professor Bing Liu che è specializzato sull'argomento: [Estrazione di Opinione, Analisi di Sentiment e Rilevazione di Spam di Opinione] [1] [1]: http: //www.cs.uic. edu/~ liub/FBS/sentiment-analysis.html Cordiali saluti, Rod – rodobastias