我目前正在尝试在 R 中使用我第一次使用它时有效的脚本来获取 wordcloud。我现在正在重新检查我的降价文档并遇到以下问题。
我正在rtweet
为特定主题的大量推文创建一个 wordcloud。
tokenized_tweets <- tidy_tweets %>% select(status_id, text) %>% unnest_tokens(word, text)
custom_stopwords <- tibble(lexicon = "custom", word = c("t.co", "https"))
tokenized_tweets %>%
anti_join(stop_words) %>%
anti_join(custom_stopwords) %>%
count(word) %>%
with(wordcloud(word, n, max.words = 25))
但是,当我使用此脚本(对我有用)时,我得到以下输出:
Joining, by = "word"Joining, by = "word"Error in UseMethod("as.quoted") : no applicable method for 'as.quoted'应用于类“function”的对象
谢谢您的帮助!