I'm a newbie here in the forum and new to text analytics using Python and R. My question is somewhat similar to Is there a better approach than counting positive-negative words in sentiment analysis?
I'm working on a dataframe with 2000 rows of product reviews of SalesForce One app. and want to analyze sentiments. (Pos. or Neg.)
I would like to analyze each review as a whole sentence and not based on a single word per review. Reproduced the same code from the below link, but the results are highly deviated as this approach is analyzing only one word per review using AFFIN lexicon.
Link: Does sentiment analysis work? A tidy analysis of Yelp reviews
The NLTK approach in python seems to fit my problem, but unable to understand the complex code to apply to my problem.
Please recommend a package/module in either R or Python which can help to analyze each review as a whole sentence. (will be glad if some rough code is provided).