gpt4 book ai didi

r - 如何使用 %in% 运算符删除停用词

转载 作者:行者123 更新时间:2023-12-04 17:10:16 24 4
gpt4 key购买 nike

我有一个数据集中的单词列表。

我的问题:知道如何修复以下代码吗?

new_words <- c("it", "apple", "carrot", "after",
"snake")
# My first solution
removeWords(new_words,
words = stopwords (kind = "en")
# I have a problem in the Second solution,
# because I want to use #%in% operator
new_words[new_words %in%
words = stopwords(kind = "en")]

最佳答案

为什么不只是 anti_join(stop_words)

这就是 Julia Silge 在 Text Mining for R 中的做法... https://www.tidytextmining.com/index.html

关于r - 如何使用 %in% 运算符删除停用词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69608958/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com