Sentiment Analysis in R
Ted Kwartler
Data Dude
Sentiment analysis is the process of extracting an author’s emotional intent from text




Bag of Words DTM & TDM


Tidy Tribble...errr...Tibble


library(qdap)
polarity(text$column)
polarity(text$column, text$factor_or_author_grouping)

library(tidytext)
inner_join(sentiment_words, some_text_to_be_analyzed)

htmlwidgets.org radar chart

ggplot2 line chart


Sentiment Analysis in R