I've been using R's sentiment
package for sentiment analysis. I was shocked when some trivial negatives as positives for many of my documents. For instance
library("sentiment")
classify_polarity("Not good")
# POS NEG POS/NEG BEST_FIT
# [1,] "8.78232285939751" "0.445453222112551" "19.7154772340574" "positive"
I'm not sure what's happening behind this. Can someone clarify this?