Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created May 31, 2021 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/752fcf441ef9cea4a03091498735939e to your computer and use it in GitHub Desktop.
Save amankharwal/752fcf441ef9cea4a03091498735939e to your computer and use it in GitHub Desktop.
from nltk.sentiment.vader import SentimentIntensityAnalyzer
sentiments = SentimentIntensityAnalyzer()
data["Positive"] = [sentiments.polarity_scores(i)["pos"] for i in data["Translated_Review"]]
data["Negative"] = [sentiments.polarity_scores(i)["neg"] for i in data["Translated_Review"]]
data["Neutral"] = [sentiments.polarity_scores(i)["neu"] for i in data["Translated_Review"]]
print(data.head())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment