Back
I have a Corpus in R utilizing the tm bundle/package. I'm applying the removeWords capacity/function to eliminate stopwords
tm_map(abs, removeWords, stopwords("english"))
Is there an approach to add my own custom stop words to this rundown?
Here, stopwords simply furnishes you with a vector of words, simply join your own ones to this.
tm_map(abs, removeWords, c(stopwords("english"),"my","custom","words"))
Interested to learn r programming in detail? Come and Join the R course.
31k questions
32.8k answers
501 comments
693 users