calculate_score {RSentiment} | R Documentation |
This function loads text and calculates score of each sentence on basis of presence of words of positive and negative sentiment, presence of negation, and checking for sarcasm. 0 indicates neutral sentiment. Positive value indicates positive sentiment. Negative value indicates negative sentiment. 99 indicates sarcasm.
calculate_score(text)
text |
A vector of sentences or a sentence (English). |
A vector containing polarity of each sentence.
calculate_score("This is good")
calculate_score(c("This is good","This is bad"))