R removeWords()


개요

R removeWords()
  • "Remove Words From A Text Document → 텍스트 문서에서 단어들 제거"
library("tm")
data("crude")
crude[[1]]
## <<PlainTextDocument>>
## Metadata:  15
## Content:  chars: 527
removeWords(crude[[1]], stopwords("english"))
## <<PlainTextDocument>>
## Metadata:  15
## Content:  chars: 452

같이 보기

참고