Skip to content

Instantly share code, notes, and snippets.

@joshstovall
Created September 10, 2021 10:13
Show Gist options
  • Save joshstovall/705851e1f3c5b50829f5f8fa500ba4be to your computer and use it in GitHub Desktop.
Save joshstovall/705851e1f3c5b50829f5f8fa500ba4be to your computer and use it in GitHub Desktop.
function sentimentAnalysis() {
var tweets = JSON.parse(body).statuses
tweets = JSON.parse(body).statuses.map(function (e) {
// clean tweet
var tweet = clean(e.text)
// sentiment analysis
var result = new Sentiment().analyze(tweet, {
extras: words
})
// return the results
return {
comparative: result.comparative,
score: result.score,
content: tweet
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment