Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 3, 2021 15:50
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/a56b87c87895598386e2644806e89953 to your computer and use it in GitHub Desktop.
Save amankharwal/a56b87c87895598386e2644806e89953 to your computer and use it in GitHub Desktop.
sentiments = SentimentIntensityAnalyzer()
data["Positive"] = [sentiments.polarity_scores(i)["pos"] for i in data["Review"]]
data["Negative"] = [sentiments.polarity_scores(i)["neg"] for i in data["Review"]]
data["Neutral"] = [sentiments.polarity_scores(i)["neu"] for i in data["Review"]]
print(data.head())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment