我正在尝试将sentimentR中的sentiment_by与dplyr的变异一起使用
例如,这有效:
content <- mutate(content, word_count = sentiment_by(story)$word_count)
但
例如,这有效:
content.sd <- mutate(content, word_count = sentiment_by(story)$sd)
给出错误错误:invalid subscript type 'closure'
但sentiment_by(content$story[1])
有效
任何帮助将不胜感激。