Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created June 12, 2021 11:58
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/c73fa14f7185e46ffcdc4592fb7a539b to your computer and use it in GitHub Desktop.
Save amankharwal/c73fa14f7185e46ffcdc4592fb7a539b to your computer and use it in GitHub Desktop.
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
from nltk.sentiment.vader import SentimentIntensityAnalyzer
sentiments = SentimentIntensityAnalyzer()
data = pd.read_csv("https://raw.githubusercontent.com/amankharwal/Website-data/master/amazon_alexa.tsv", delimiter='\t')
print(data.head())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment