我正在尝试通过提取Tweet在R中进行情感分析。推文越来越好。但是当我尝试对推文进行标记时出现此错误。我得到的错误是
“ mutate_impl(.data,点)中的错误: 评估错误:找不到对象“负”。”
这是我编写的代码
tokens %>%
inner_join(get_sentiments("bing")) %>% # pull out only sentiment words
count(sentiment) %>% # count the # of positive & negative words
spread(sentiment, n, fill = 0) %>%
mutate(sentiment = positive - negative)
一旦包含Mutate语句,就会引发此错误。 感谢您在解决此问题方面能获得的任何帮助。