在R中向Bing情感词典添加新词汇

4

我正在使用R Studio分析一些评论。目前我正在使用tidytext软件包中的Bing情感词典进行分析。

我有一些额外的单词想要添加到Bing情感词典里(在线或离线)。例如,我可以根据积极或消极程度或任何其他情感来添加它们。我该如何做?

1个回答

2

sentiment 是一个 tibble,因此添加新单词只需使用 rbind

additional_sentiment <- tibble(word=c("verygood","verybad"),
                               sentiment=c("positive","negative"))

new_sentiment <- get_sentiments("bing")%>%
                    rbind(additional_sentiment)

tail(new_sentiment)
# A tibble: 6 x 2
      word sentiment
     <chr>     <chr>
1   zenith  positive
2     zest  positive
3    zippy  positive
4   zombie  negative
5 verygood  positive
6  verybad  negative

joined <- austen_books() %>%
  unnest_tokens(word, text) %>%
  left_join(new_sentiment)

head(joined[!is.na(joined$sentiment),])
# A tibble: 6 x 3
                 book        word sentiment
               <fctr>       <chr>     <chr>
1 Sense & Sensibility respectable  positive
2 Sense & Sensibility        good  positive
3 Sense & Sensibility    advanced  positive
4 Sense & Sensibility       death  negative
5 Sense & Sensibility       great  positive
6 Sense & Sensibility        loss  negative

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接