Sentiment analysis using NLTK SentimentIntensityAnalyzer and NRC Lexicon
Download lexicon:
# Make data directory if it doesn't exist
!mkdir -p data
!wget -nc https://nyc3.digitaloceanspaces.com/ml-files-distro/v1/upshot-trump-emolex/data/NRC-emotion-lexicon-wordlevel-alphabetized-v0.92.txt -P data
Define processing task:...