R 中的情感分析
Ted Kwartler
Data Dude
"情感分析"是"从文本中提取作者情绪意图"的过程




词袋 DTM 与 TDM


整洁 tribble……呃……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 雷达图

ggplot2 折线图


R 中的情感分析