Removing words featured in character vector from string

前端 未结 2 977
傲寒
傲寒 2020-12-31 09:28

I have a character vector of stopwords in R:

stopwords = c(\"a\" ,
            \"able\" ,
            \"about\" ,
            \"above\" ,
            \"abst         


        
2条回答
  •  傲寒
    傲寒 (楼主)
    2020-12-31 10:01

    You could use the tm library for this:

    require("tm")
    removeWords(str,stopwords)
    #[1] "I have   "
    

提交回复
热议问题