I'm using the General Inquirer dictionary with the SentimentAnalysis package and I can't figure out how they assign the sentiment score...
For example, if I run the following code:
sentiment <- analyzeSentiment(sampledf)
summary(sentiment$SentimentGI)
I'll get an output like this:
Min. 1st Qu. Median Mean 3rd Qu. Max.
-0.80000 -0.16667 -0.07692 -0.07313 0.00000 0.66667
What's the scale being used here? -1 to 1? I don't know how to interpret these results.
Thanks!