我正在收集一些推特信息的情绪数据。此外,我一直在使用功能 Sentiment_by 以按列对信息进行分组。
sent<-sentiment_by(tidy_libros_stopwords$word, by=tidy_libros_stopwords$screen_name)
现在我需要按两列(screen_name 和 created_at)分组的问题我已经尝试过但不起作用
sent<-sentiment_by(tidy_libros_stopwords$word, by=tidy_libros_stopwords$screen_name,tidy_libros_stopwords$created_at)